2021-07-10 08:51:15 +08:00

13 lines
218 B
TypeScript

declare namespace NodeJS {
interface ProcessEnv {
readonly NODE_ENV: 'development' | 'production'
readonly PORT: string
}
}
interface Window {
/** 关闭预加载动画 */
removeLoading: () => void
}