UNPKG

102 BTypeScriptView Raw
1export interface IKeyPair {
2 publicKey: string;
3 privateKey: string;
4 compressed: boolean;
5}