diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-06-03 03:01:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-03 03:01:58 +0800 |
commit | 88815e5b4514e4953cc150241340e0b53dadc198 (patch) | |
tree | e8e0ba5b603f07bddf6cd01329e001b06b5987dd /src/globals.d.ts | |
parent | 5925f81fe185a90efaa82dd90bd8d65d74326f11 (diff) | |
parent | 36e937f8de348cfdb35ff8f72504aed1dfab07b2 (diff) | |
download | dexon-sol-tools-88815e5b4514e4953cc150241340e0b53dadc198.tar dexon-sol-tools-88815e5b4514e4953cc150241340e0b53dadc198.tar.gz dexon-sol-tools-88815e5b4514e4953cc150241340e0b53dadc198.tar.bz2 dexon-sol-tools-88815e5b4514e4953cc150241340e0b53dadc198.tar.lz dexon-sol-tools-88815e5b4514e4953cc150241340e0b53dadc198.tar.xz dexon-sol-tools-88815e5b4514e4953cc150241340e0b53dadc198.tar.zst dexon-sol-tools-88815e5b4514e4953cc150241340e0b53dadc198.zip |
Merge pull request #29 from 0xProject/remainingTokenMethods
Implement Remaining Token Methods
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 d86f54dfc..164fc2386 100644 --- a/src/globals.d.ts +++ b/src/globals.d.ts @@ -14,6 +14,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` |