@transmute/ld-key-pair
Version:
Linked Data Key Pair Interfaces, common methods, and tests
13 lines (12 loc) • 400 B
TypeScript
export interface PublicNodeBase {
id: string;
type: string;
controller: string;
}
export interface PublicNodeWithPublicKeyJwk extends PublicNodeBase {
publicKeyJwk: any;
}
export interface PublicNodeWithPublicBase58 extends PublicNodeBase {
publicKeyBase58: string;
}
export declare type LdVerificationMethod = PublicNodeWithPublicKeyJwk | PublicNodeWithPublicBase58;