electron-vite-react/types.d.ts

10 lines
180 B
TypeScript
Raw Normal View History

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
2021-11-02 12:59:39 +08:00
}
}