2021-06-23 10:58:52 +08:00
|
|
|
|
|
|
|
declare namespace NodeJS {
|
|
|
|
interface ProcessEnv {
|
|
|
|
readonly 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
|
|
|
|
}
|