mirror of https://github.com/buster-so/buster.git
11 lines
190 B
TypeScript
11 lines
190 B
TypeScript
|
declare global {
|
||
|
namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
NODE_ENV?: 'development' | 'production' | 'test';
|
||
|
// Add your environment variables here
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {};
|