diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-10-26 04:04:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-26 04:04:31 +0800 |
commit | e78398862b5e7bb08d15590c9bd0c656994b2a1f (patch) | |
tree | d1a719dd67857d2555369d9b377518061798b597 /src/globals.d.ts | |
parent | fa3e88c454e8d25fe8725dc7bf8ea35d6c3e33ab (diff) | |
parent | 122a5e9b63b5b3617ad63a56b0673fd9dd974208 (diff) | |
download | dexon-sol-tools-e78398862b5e7bb08d15590c9bd0c656994b2a1f.tar dexon-sol-tools-e78398862b5e7bb08d15590c9bd0c656994b2a1f.tar.gz dexon-sol-tools-e78398862b5e7bb08d15590c9bd0c656994b2a1f.tar.bz2 dexon-sol-tools-e78398862b5e7bb08d15590c9bd0c656994b2a1f.tar.lz dexon-sol-tools-e78398862b5e7bb08d15590c9bd0c656994b2a1f.tar.xz dexon-sol-tools-e78398862b5e7bb08d15590c9bd0c656994b2a1f.tar.zst dexon-sol-tools-e78398862b5e7bb08d15590c9bd0c656994b2a1f.zip |
Merge pull request #202 from 0xProject/fix/bignumber-types
Bignumber types
Diffstat (limited to 'src/globals.d.ts')
-rw-r--r-- | src/globals.d.ts | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/globals.d.ts b/src/globals.d.ts index 05d7131c2..cb3800056 100644 --- a/src/globals.d.ts +++ b/src/globals.d.ts @@ -12,12 +12,6 @@ declare module 'web3-provider-engine/subproviders/rpc'; // 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` @@ -70,8 +64,6 @@ declare module 'truffle-hdwallet-provider' { // abi-decoder declarations interface DecodedLogArg { - name: string; - value: string|BigNumber.BigNumber; } interface DecodedLog { name: string; |