Fix linter issues

This commit is contained in:
Leonid Logvinov
2018-05-08 16:02:04 +02:00
parent a6f72de09d
commit 75d24dea0e
49 changed files with 119 additions and 183 deletions

View File

@@ -1,4 +1,6 @@
declare module 'ethers' {
import { TxData } from '@0xproject/types';
export interface TransactionDescription {
name: string;
signature: string;
@@ -26,7 +28,7 @@ declare module 'ethers' {
constructor(abi: any);
}
export class Contract {
public static getDeployTransaction(bytecode: string, abi: any, ...args: any[]): any;
public static getDeployTransaction(bytecode: string, abi: any, ...args: any[]): Partial<TxData>;
constructor(address: string, abi: any, provider: any);
}
}