card_info_svr/src/global.d.ts
2021-01-08 16:22:41 +08:00

12 lines
178 B
TypeScript

export {};
declare global {
namespace NodeJS {
interface Global {
NODE_ENV: string
ROOT_PATH: string
$cfg: any
}
}
}