corgi/src/global.d.ts
2021-04-27 15:54:45 +08:00

13 lines
169 B
TypeScript

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