aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web3-wrapper/src/globals.d.ts
blob: 09c9fd81953e2f3491518a8a6689266e6a133222 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
declare module 'web3-utils' {
    import * as BigNumber from 'bignumber.js';

    const toHex: (val: any) => string;
    const isHexStrict: (val: any) => boolean;
    const toDecimal: (val: any) => number;
}

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