1 declare interface Window {
2 __REDUX_DEVTOOLS_EXTENSION__: any;
3 __REDUX_DEVTOOLS_EXTENSION_COMPOSE__: any;
6 declare interface NodeModule {
7 hot?: { accept: (path: string, callback: () => void) => void };
10 declare interface System {
11 import<T = any>(module: string): Promise<T>
13 declare var System: System;