8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
|
declare global {
|
||
|
namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
NODE_ENV: ("development" | "staging" | "production" | "test") & (string & {});
|
||
|
}
|
||
|
}
|
||
|
}
|