aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/monorepo_scripts/globals.d.ts
blob: bbfbdaa6acac57a34c35b493adf99f61c142d031 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
declare module 'async-child-process';
declare module 'publish-release';

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

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