electron-vite-vue/types.d.ts

9 lines
186 B
TypeScript
Raw Normal View History

2021-11-11 17:52:50 +08:00
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: 'development' | 'production'
2022-02-08 11:13:34 +08:00
readonly VITE_DEV_SERVER_HOST: string
readonly VITE_DEV_SERVER_PORT: string
2021-11-11 17:52:50 +08:00
}
}