aboutsummaryrefslogtreecommitdiffstats
path: root/packages/dev-tools-pages/ts/globals.d.ts
blob: bfe13ee71f727a6e21bb0d28eef94fae8ffe8f18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
declare module 'whatwg-fetch';
declare module 'react-document-title';
declare module 'highlight.js/lib/highlight';
declare module 'highlight.js/lib/languages/javascript';
declare module 'highlight.js/lib/languages/json';

declare var System: any;

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;
}