mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
7 lines
195 B
TypeScript
7 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
|
|
}
|
|
}
|