13 lines
171 B
TypeScript
13 lines
171 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
TOKEN: string;
|
|
DEVTOKEN: string;
|
|
PORT: string;
|
|
ENVIRONMENT: 'prod' | 'dev';
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|