Move type declaration for hdkey to typescript-typings
This commit is contained in:
11
packages/typescript-typings/types/hdkey/index.d.ts
vendored
Normal file
11
packages/typescript-typings/types/hdkey/index.d.ts
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
declare module 'hdkey' {
|
||||
class HDNode {
|
||||
public static fromMasterSeed(seed: Buffer): HDNode;
|
||||
public publicKey: Buffer;
|
||||
public privateKey: Buffer;
|
||||
public chainCode: Buffer;
|
||||
public constructor();
|
||||
public derive(path: string): HDNode;
|
||||
}
|
||||
export = HDNode;
|
||||
}
|
Reference in New Issue
Block a user