refs #14280 Merge branch 'origin/14280-query-language'
[arvados-workbench2.git] / typings / global.d.ts
1 declare interface Window {
2   __REDUX_DEVTOOLS_EXTENSION__: any;
3   __REDUX_DEVTOOLS_EXTENSION_COMPOSE__: any;
4 }
5
6 declare interface NodeModule {
7   hot?: { accept: (path: string, callback: () => void) => void };
8 }
9
10 declare interface System {
11   import<T = any>(module: string): Promise<T>
12 }
13 declare var System: System;
14
15 declare module 'react-splitter-layout';
16 declare module 'react-rte';
17
18 declare module 'is-image' {
19   export default function isImage(value: string): boolean;
20 }