aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/globals.d.ts
blob: da026a198f51f5d21db870d54b1bbdb2dc52cb63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
declare module 'whatwg-fetch';
declare module 'react-document-title';

declare module '*.json' {
    const json: any;
    /* tslint:disable */
    export default json;
    /* tslint:enable */
}

declare module '*.css' {
    const css: any;
    export default css;
}

declare module '*.svg' {
    const svg: any;
    export default svg;
}