UNPKG

digital-covid-certificate-lib

Version:

A library to parse and verify Digital Covid Certificates (DCC)

5 lines (4 loc) 144 B
export interface IKeyStore<LoadingArgs, Identifier> { loadKeys(loadingArgs: LoadingArgs): Promise<void>; getKey(id: Identifier): any; }