mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-01-19 20:07:06 +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
|
||
|
}
|
||
|
}
|