5 lines
108 B
TypeScript
5 lines
108 B
TypeScript
|
|
declare namespace NodeJS {
|
||
|
|
interface ProcessEnv {
|
||
|
|
NODE_ENV: 'production' | 'development'
|
||
|
|
}
|
||
|
|
}
|