mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
466 B
TypeScript
17 lines
466 B
TypeScript
// Type definitions for hdkey 0.7
|
|
// Project: https://github.com/cryptocoinjs/hdkey
|
|
// Definitions by: Leonid Logvinov <https://github.com/LogvinovLeon>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="node"/>
|
|
|
|
declare class HDNode {
|
|
static fromMasterSeed(seed: Buffer): HDNode;
|
|
publicKey: Buffer;
|
|
privateKey: Buffer;
|
|
chainCode: Buffer;
|
|
constructor();
|
|
derive(path: string): HDNode;
|
|
}
|
|
export = HDNode;
|