Add basic application skeleton
[arvados-workbench2.git] / typings / global.d.ts
diff --git a/typings/global.d.ts b/typings/global.d.ts
new file mode 100644 (file)
index 0000000..70a3fe5
--- /dev/null
@@ -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<T = any>(module: string): Promise<T>
+}
+declare var System: System;