UNPKG

@investorid/identity-sdk

Version:
15 lines (14 loc) 230 B
export declare enum KeyPurpose { MANAGEMENT = 1, ACTION = 2, CLAIM = 3 } export declare enum KeyType { ECDSA = 1, RSA = 2 } export interface Key { purpose: KeyPurpose; type: KeyType; key: string; }