mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-01-20 04:16:36 +08:00
13 lines
209 B
TypeScript
13 lines
209 B
TypeScript
|
|
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV: 'development' | 'production'
|
|
readonly PORT: string
|
|
}
|
|
}
|
|
|
|
interface Window {
|
|
/** 关闭预加载动画 */
|
|
removeLoading: () => void
|
|
}
|