YesPlayMusic/types.d.ts
2022-03-16 18:46:08 +08:00

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
}
}