electron-vite-vue/types.d.ts

9 lines
154 B
TypeScript
Raw Normal View History

2021-11-11 17:52:50 +08:00
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: 'development' | 'production'
readonly PORT: string
readonly HOST: string
}
}