mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-02-01 04:26:36 +08:00
9 lines
154 B
TypeScript
9 lines
154 B
TypeScript
|
|
||
|
declare namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
NODE_ENV: 'development' | 'production'
|
||
|
readonly PORT: string
|
||
|
readonly HOST: string
|
||
|
}
|
||
|
}
|