electron-vite-react/types.d.ts

8 lines
128 B
TypeScript
Raw Normal View History

2021-11-02 12:59:39 +08:00
declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: 'development' | 'production'
readonly PORT: string
}
}