digital-covid-certificate-lib
Version:
A library to parse and verify Digital Covid Certificates (DCC)
9 lines (8 loc) • 379 B
TypeScript
import { EudccPerson, EudccRecoeryGroup } from "./EudccFields";
import { EudccHcert } from "./EudccHcert";
export declare class RecoveryCertificate extends EudccHcert {
readonly schemaVersion: string;
readonly person: EudccPerson;
readonly infromation: EudccRecoeryGroup;
constructor(schemaVersion: string, person: EudccPerson, infromation: EudccRecoeryGroup);
}