8 lines
128 B
TypeScript
8 lines
128 B
TypeScript
![]() |
|
||
|
declare namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
NODE_ENV: 'development' | 'production'
|
||
|
readonly PORT: string
|
||
|
}
|
||
|
}
|