smartenv/ts/interfaces/index.ts

10 lines
143 B
TypeScript
Raw Permalink Normal View History

2019-06-17 06:46:28 +00:00
export let defaultme = null;
declare global {
namespace NodeJS {
interface Global {
window: any;
navigator: any;
}
}
}