electron-vite-vue/typings/global.d.ts

12 lines
192 B
TypeScript
Raw Normal View History

2021-06-23 10:58:52 +08:00
declare namespace NodeJS {
interface ProcessEnv {
readonly NODE_ENV: 'development' | 'production'
}
}
interface Window {
/** 关闭预加载动画 */
removeLoading: () => void
}