electron-vite-vue/typings/global.d.ts
2021-07-08 22:44:44 +08:00

13 lines
209 B
TypeScript

declare namespace NodeJS {
interface ProcessEnv {
NODE_ENV: 'development' | 'production'
readonly PORT: string
}
}
interface Window {
/** 关闭预加载动画 */
removeLoading: () => void
}