UNPKG

digital-covid-certificate-lib

Version:

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

10 lines (9 loc) 262 B
export declare type Base45 = string; declare type DccType = 'HC1'; export declare class DccBase45 { readonly certificateWithPrefix: Base45; readonly type: DccType; readonly base45: Base45; constructor(certificateWithPrefix: Base45); } export {};