YesPlayMusic/types.d.ts

8 lines
195 B
TypeScript
Raw Normal View History

2022-03-13 14:40:38 +08:00
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: 'development' | 'production' | 'debug'
readonly VITE_DEV_SERVER_HOST: string
readonly VITE_DEV_SERVER_PORT: string
}
}