aboutsummaryrefslogtreecommitdiffstats
path: root/src/globals.d.ts
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-07-04 05:31:40 +0800
committerGitHub <noreply@github.com>2017-07-04 05:31:40 +0800
commit86c742cb11d0bb6a5ffb14275ce86be265b04cb8 (patch)
treecde0f449e90d108a3d715faf12d859487c236b6a /src/globals.d.ts
parent92c6144b6a7a47402770cd6c1d33db7f4cb847ec (diff)
parentd4cef89587ef8ea0f7fbab1146c4524e8f588eac (diff)
downloaddexon-0x-contracts-86c742cb11d0bb6a5ffb14275ce86be265b04cb8.tar
dexon-0x-contracts-86c742cb11d0bb6a5ffb14275ce86be265b04cb8.tar.gz
dexon-0x-contracts-86c742cb11d0bb6a5ffb14275ce86be265b04cb8.tar.bz2
dexon-0x-contracts-86c742cb11d0bb6a5ffb14275ce86be265b04cb8.tar.lz
dexon-0x-contracts-86c742cb11d0bb6a5ffb14275ce86be265b04cb8.tar.xz
dexon-0x-contracts-86c742cb11d0bb6a5ffb14275ce86be265b04cb8.tar.zst
dexon-0x-contracts-86c742cb11d0bb6a5ffb14275ce86be265b04cb8.zip
Merge branch 'master' into wrap-log-bignumber
Diffstat (limited to 'src/globals.d.ts')
-rw-r--r--src/globals.d.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/globals.d.ts b/src/globals.d.ts
index 4a0a3fb04..6a4e8d3a7 100644
--- a/src/globals.d.ts
+++ b/src/globals.d.ts
@@ -7,10 +7,6 @@ declare module 'request-promise-native';
declare module 'web3-provider-engine';
declare module 'web3-provider-engine/subproviders/rpc';
-declare interface Schema {
- id: string;
-}
-
// 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.