diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-06-28 02:04:27 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-06-28 02:04:27 +0800 |
commit | 75711f348a09ce666059f76e38e74682463ccaf7 (patch) | |
tree | 27934c3bb82c230f2b6d6a1b4cfffaec708bc759 /src/globals.d.ts | |
parent | 56cfb41d54e012864fa9f557a8008f57de6c4267 (diff) | |
download | dexon-sol-tools-75711f348a09ce666059f76e38e74682463ccaf7.tar dexon-sol-tools-75711f348a09ce666059f76e38e74682463ccaf7.tar.gz dexon-sol-tools-75711f348a09ce666059f76e38e74682463ccaf7.tar.bz2 dexon-sol-tools-75711f348a09ce666059f76e38e74682463ccaf7.tar.lz dexon-sol-tools-75711f348a09ce666059f76e38e74682463ccaf7.tar.xz dexon-sol-tools-75711f348a09ce666059f76e38e74682463ccaf7.tar.zst dexon-sol-tools-75711f348a09ce666059f76e38e74682463ccaf7.zip |
Remove custom Schema type and use one from jsonschema
Diffstat (limited to 'src/globals.d.ts')
-rw-r--r-- | src/globals.d.ts | 4 |
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. |