electron-vite-react/types.d.ts

9 lines
186 B
TypeScript
Raw Normal View History

2021-11-02 12:59:39 +08:00
declare namespace NodeJS {
interface ProcessEnv {
2022-03-14 15:23:22 +08:00
NODE_ENV: 'development' | 'production'
2022-02-08 09:58:29 +08:00
readonly VITE_DEV_SERVER_HOST: string
readonly VITE_DEV_SERVER_PORT: string
2021-11-02 12:59:39 +08:00
}
}