aboutsummaryrefslogtreecommitdiffstats
path: root/src/globalsAugment.d.ts
blob: bb8cd625ddb706cc61dcb5767a012da87b535e81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import BigNumber from 'bignumber.js';

declare global {
    /* tslint:disable */
    namespace Chai {
        interface NumberComparer {
            (value: number|BigNumber, message?: string): Assertion;
        }
        interface NumericComparison {
            greaterThan: NumberComparer;
        }
    }
    /* tslint:enable */
    interface DecodedLogArg {
        name: string;
        value: string|BigNumber;
    }
}