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

13 lines
209 B
TypeScript
Raw Normal View History

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