mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-12-01 21:13:40 +08:00
8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
|
declare namespace NodeJS {
|
||
|
interface ProcessEnv {
|
||
|
NODE_ENV: 'development' | 'production' | 'debug'
|
||
|
readonly VITE_DEV_SERVER_HOST: string
|
||
|
readonly VITE_DEV_SERVER_PORT: string
|
||
|
}
|
||
|
}
|