smartenv/ts/interfaces/index.ts
2019-06-17 08:46:28 +02:00

10 lines
143 B
TypeScript

export let defaultme = null;
declare global {
namespace NodeJS {
interface Global {
window: any;
navigator: any;
}
}
}