aboutsummaryrefslogtreecommitdiffstats
path: root/packages/deployer/src/globals.d.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-02-10 04:50:37 +0800
committerFabio Berger <me@fabioberger.com>2018-02-10 04:50:37 +0800
commitf3f264f5fde609c05641fabb5cc6c2c333e103b4 (patch)
tree7f7117b2688ae2071020c413ff69a6e73c09a948 /packages/deployer/src/globals.d.ts
parent0a113e1cf70872f23ceef988fa41f3d1172f7bf9 (diff)
downloaddexon-0x-contracts-f3f264f5fde609c05641fabb5cc6c2c333e103b4.tar
dexon-0x-contracts-f3f264f5fde609c05641fabb5cc6c2c333e103b4.tar.gz
dexon-0x-contracts-f3f264f5fde609c05641fabb5cc6c2c333e103b4.tar.bz2
dexon-0x-contracts-f3f264f5fde609c05641fabb5cc6c2c333e103b4.tar.lz
dexon-0x-contracts-f3f264f5fde609c05641fabb5cc6c2c333e103b4.tar.xz
dexon-0x-contracts-f3f264f5fde609c05641fabb5cc6c2c333e103b4.tar.zst
dexon-0x-contracts-f3f264f5fde609c05641fabb5cc6c2c333e103b4.zip
Add tslint.json to deployer package and fix all tslint issues
Diffstat (limited to 'packages/deployer/src/globals.d.ts')
-rw-r--r--packages/deployer/src/globals.d.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/deployer/src/globals.d.ts b/packages/deployer/src/globals.d.ts
index 0a35002da..2e04d83ea 100644
--- a/packages/deployer/src/globals.d.ts
+++ b/packages/deployer/src/globals.d.ts
@@ -1,8 +1,11 @@
declare module 'solc' {
+ // tslint:disable:completed-docs
export function compile(sources: any, optimizerEnabled: number, findImports: (importPath: string) => any): any;
export function setupMethods(solcBin: any): any;
+ // tslint:enable:completed-docs
}
declare module 'web3-eth-abi' {
+ // tslint:disable-next-line:completed-docs
export function encodeParameters(typesArray: string[], parameters: any[]): string;
}