2021-11-02 12:59:39 +08:00
|
|
|
|
|
|
|
declare namespace NodeJS {
|
|
|
|
interface ProcessEnv {
|
|
|
|
NODE_ENV: 'development' | 'production'
|
|
|
|
readonly PORT: string
|
2021-11-08 19:17:58 +08:00
|
|
|
readonly HOST: string
|
|
|
|
readonly PORT: number
|
|
|
|
readonly PORT_WS: number
|
2021-11-02 12:59:39 +08:00
|
|
|
}
|
|
|
|
}
|