@transmute/ld-key-pair
Version:
Linked Data Key Pair Interfaces, common methods, and tests
18 lines (14 loc) • 379 B
text/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 type LdVerificationMethod =
| PublicNodeWithPublicKeyJwk
| PublicNodeWithPublicBase58;