HenryNguyen5 c340246ca0 Enable no-implicit-any (#1263)
* Progress commit

* Update more types

* Fix more types

* Fix abi function types

* Fix lib types

* Fix rest of types

* Address wbobeirne changes

* Change origin and destination check
2018-03-07 17:36:05 -06:00

12 lines
353 B
TypeScript

declare module 'hdkey' {
export default class HDKey {
privateKey: Buffer;
publicKey: Buffer;
chainCode: Buffer | string;
static fromMasterSeed(seedBuffer: Buffer, versions?: any[]): HDKey;
static fromExtendedKey(base58key: any, versions?: any[]): HDKey;
static fromJSON(obj: any): HDKey;
derive(path: string): HDKey;
}
}