aboutsummaryrefslogtreecommitdiffstats
path: root/packages/abi-gen/src/globals.d.ts
blob: d267a410611d3ba631c0b73714b5b69ba6e3b59e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
declare function toSnakeCase(str: string): string;
declare module 'to-snake-case' {
    export = toSnakeCase;
}

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