nrb-qr-parser
Version:
Reads QR Code string from Malawi Registration National Bureau Identification document and converts it to a json format
15 lines (14 loc) • 382 B
TypeScript
interface QrOutput {
docType?: string;
given_name?: string;
family_name?: string;
birthdate?: string;
registration_ta?: string;
registration_district?: string;
registration_village?: string;
registration_date?: string;
gender?: string;
identifier?: string;
}
export declare function parseNrbQr(code: string): QrOutput | undefined;
export {};