added property private key (d) in ECPair class

This commit is contained in:
Daniel Lebrecht
2017-10-13 17:11:27 +02:00
parent aafbcfd90b
commit 5f30e1c83d

View File

@@ -66,6 +66,8 @@ export class ECPair {
constructor(d: null | undefined, Q: any, options?: { compressed?: boolean, network?: Network }); // Q should be ECPoint, but not sure how to define such type
d: BigInteger;
getAddress(): string;
getNetwork(): Network;