13 lines
169 B
TypeScript
13 lines
169 B
TypeScript
export {}
|
|
|
|
declare global {
|
|
namespace NodeJS {
|
|
interface Global {
|
|
NODE_ENV: string
|
|
ROOT_PATH: string
|
|
$cfg: any
|
|
isProd: boolean
|
|
}
|
|
}
|
|
}
|