chore: add HOST field

This commit is contained in:
草鞋没号
2021-11-09 08:57:17 +08:00
parent ebf05888da
commit d3567065e8
2 changed files with 3 additions and 0 deletions

2
types/global.d.ts vendored
View File

@@ -2,7 +2,9 @@
declare namespace NodeJS {
interface ProcessEnv {
readonly NODE_ENV: 'development' | 'production'
readonly HOST: string
readonly PORT: string
readonly PORT_WS: string
}
}