mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-03-02 15:00:14 +08:00
12 lines
192 B
TypeScript
12 lines
192 B
TypeScript
|
|
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
readonly NODE_ENV: 'development' | 'production'
|
|
}
|
|
}
|
|
|
|
interface Window {
|
|
/** 关闭预加载动画 */
|
|
removeLoading: () => void
|
|
}
|