Files
Chat2DB/chat2db-client/typings.d.ts
2023-06-26 21:21:35 +08:00

9 lines
189 B
TypeScript

import 'umi/typings';
declare namespace NodeJS {
interface ProcessEnv {
readonly NODE_ENV: 'development' | 'production'
readonly UMI_ENV: string
readonly __ENV: string;
}
}