diff options
Diffstat (limited to 'src/globals.d.ts')
-rw-r--r-- | src/globals.d.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/globals.d.ts b/src/globals.d.ts index 0f2fe0f2f..0af1554a1 100644 --- a/src/globals.d.ts +++ b/src/globals.d.ts @@ -13,6 +13,12 @@ declare interface Schema { // disallow `namespace`, we disable tslint for the following. /* tslint:disable */ declare namespace Chai { + interface NumberComparer { + (value: number|BigNumber.BigNumber, message?: string): Assertion; + } + interface NumericComparison { + greaterThan: NumberComparer; + } interface Assertion { bignumber: Assertion; // HACK: In order to comply with chai-as-promised we make eventually a `PromisedAssertion` not an `Assertion` |