aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-shared/src/globals.d.ts
blob: 525563e23d4e9272cab88f8a1c64882b7ddd2e48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
declare module 'react-highlight';

// is-mobile declarations
declare function isMobile(): boolean;
declare module 'is-mobile' {
    export = isMobile;
}

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