X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/1c092cb7aeeaf2ecc1c92678aa0ba2f1b7b083bc..cf48e928d4d334b0b6434529d7619c616da319f2:/typings/global.d.ts diff --git a/typings/global.d.ts b/typings/global.d.ts new file mode 100644 index 00000000..70a3fe53 --- /dev/null +++ b/typings/global.d.ts @@ -0,0 +1,13 @@ +declare interface Window { + __REDUX_DEVTOOLS_EXTENSION__: any; + __REDUX_DEVTOOLS_EXTENSION_COMPOSE__: any; +} + +declare interface NodeModule { + hot?: { accept: (path: string, callback: () => void) => void }; +} + +declare interface System { + import(module: string): Promise +} +declare var System: System;