8 lines
185 B
TypeScript
8 lines
185 B
TypeScript
![]() |
declare namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
NODE_ENV: 'development' | 'production'
|
||
|
readonly VITE_DEV_SERVER_HOST: string
|
||
|
readonly VITE_DEV_SERVER_PORT: string
|
||
|
}
|
||
|
}
|