12 lines
178 B
TypeScript
12 lines
178 B
TypeScript
export {};
|
|
|
|
declare global {
|
|
namespace NodeJS {
|
|
interface Global {
|
|
NODE_ENV: string
|
|
ROOT_PATH: string
|
|
$cfg: any
|
|
}
|
|
}
|
|
}
|