electron-vite-vue/types/global.d.ts
2021-11-09 08:57:17 +08:00

19 lines
394 B
TypeScript

declare namespace NodeJS {
interface ProcessEnv {
readonly NODE_ENV: 'development' | 'production'
readonly HOST: string
readonly PORT: string
readonly PORT_WS: string
}
}
interface Window {
/** 关闭预加载动画 */
removeLoading: () => void
/** NodeJs fs */
fs: typeof import('fs')
/** Electron ipcRenderer */
ipcRenderer: import('electron').IpcRenderer
}