aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-09-04 20:52:17 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-09-04 22:36:18 +0800
commit77acbdd3ea9067856d0ece5fc2adc9609c480c9c (patch)
tree85ce6a6c58fbbf2dd1af0550c8a85314d1458d8c /packages/typescript-typings
parentc13190ceab6cea692e55c4e0561cc8846cd47839 (diff)
downloaddexon-0x-contracts-77acbdd3ea9067856d0ece5fc2adc9609c480c9c.tar
dexon-0x-contracts-77acbdd3ea9067856d0ece5fc2adc9609c480c9c.tar.gz
dexon-0x-contracts-77acbdd3ea9067856d0ece5fc2adc9609c480c9c.tar.bz2
dexon-0x-contracts-77acbdd3ea9067856d0ece5fc2adc9609c480c9c.tar.lz
dexon-0x-contracts-77acbdd3ea9067856d0ece5fc2adc9609c480c9c.tar.xz
dexon-0x-contracts-77acbdd3ea9067856d0ece5fc2adc9609c480c9c.tar.zst
dexon-0x-contracts-77acbdd3ea9067856d0ece5fc2adc9609c480c9c.zip
Remove types for ganache-core from typescript-typings
Diffstat (limited to 'packages/typescript-typings')
-rw-r--r--packages/typescript-typings/types/ganache-core/index.d.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/packages/typescript-typings/types/ganache-core/index.d.ts b/packages/typescript-typings/types/ganache-core/index.d.ts
deleted file mode 100644
index c07e6a78e..000000000
--- a/packages/typescript-typings/types/ganache-core/index.d.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-declare module 'ganache-core' {
- import { Provider } from 'ethereum-types';
- export interface GanacheOpts {
- verbose?: boolean;
- logger?: {
- log(msg: string): void;
- };
- port?: number;
- network_id?: number;
- networkId?: number;
- mnemonic?: string;
- gasLimit?: number;
- }
- // tslint:disable-next-line:completed-docs
- export function provider(opts: GanacheOpts): Provider;
-}