aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/globalsAugment.d.ts
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2017-12-02 03:29:27 +0800
committerGitHub <noreply@github.com>2017-12-02 03:29:27 +0800
commitc291419141b06814c3e6d662998b7eaa6d554528 (patch)
tree4d85215ecfa9f627c12ca2dd14dc4e4c8ef3f22d /packages/contracts/globalsAugment.d.ts
parentc57190dead41846809effb8823bd4e486ca72512 (diff)
parent290a96d41f62b38a6d4b332fc716088caf666381 (diff)
downloaddexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar
dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.gz
dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.bz2
dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.lz
dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.xz
dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.tar.zst
dexon-sol-tools-c291419141b06814c3e6d662998b7eaa6d554528.zip
Merge pull request #247 from 0xProject/feature/addContractsRepo
Add contracts repo
Diffstat (limited to 'packages/contracts/globalsAugment.d.ts')
-rw-r--r--packages/contracts/globalsAugment.d.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/contracts/globalsAugment.d.ts b/packages/contracts/globalsAugment.d.ts
new file mode 100644
index 000000000..21f3742ae
--- /dev/null
+++ b/packages/contracts/globalsAugment.d.ts
@@ -0,0 +1,19 @@
+import {BigNumber} from 'bignumber.js';
+
+// HACK: This module overrides the Chai namespace so that we can use BigNumber types inside.
+// Source: https://github.com/Microsoft/TypeScript/issues/7352#issuecomment-191547232
+declare global {
+ // HACK: In order to merge the bignumber declaration added by chai-bignumber to the chai Assertion
+ // interface we must use `namespace` as the Chai definitelyTyped definition does. Since we otherwise
+ // disallow `namespace`, we disable tslint for the following.
+ /* tslint:disable */
+ namespace Chai {
+ interface NumberComparer {
+ (value: number | BigNumber, message?: string): Assertion;
+ }
+ interface NumericComparison {
+ greaterThan: NumberComparer;
+ }
+ }
+ /* tslint:enable */
+} \ No newline at end of file