electron-vite-react/electron/electron-env.d.ts

8 lines
185 B
TypeScript
Raw Normal View History

2022-07-02 11:10:16 +08:00
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: 'development' | 'production'
readonly VITE_DEV_SERVER_HOST: string
readonly VITE_DEV_SERVER_PORT: string
}
}