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

// compare-version declarations
declare function compareVersions(firstVersion: string, secondVersion: string): number;
declare module 'compare-versions' {
    export = compareVersions;
}

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