aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/src/globals.d.ts
blob: 3cd6d91b19f055809473a360de276b01ae406347 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
declare module 'web3_beta';
declare module 'request-promise-native';

// semver-sort declarations
declare module 'semver-sort' {
    const desc: (versions: string[]) => string[];
}

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