Repository URL to install this package:
|
Version:
2.0.12 ▾
|
// https://stackoverflow.com/questions/35074713/extending-typescript-global-object-in-node-js
export {}
declare global {
namespace NodeJS {
interface Global {
ENV: any
}
}
}