fix(core): update

This commit is contained in:
2019-06-17 08:46:28 +02:00
parent ffc781011d
commit 677c8d33b9
19 changed files with 1987 additions and 646 deletions

9
ts/interfaces/index.ts Normal file
View File

@ -0,0 +1,9 @@
export let defaultme = null;
declare global {
namespace NodeJS {
interface Global {
window: any;
navigator: any;
}
}
}