ekyc

Electronic KYC process with uploading ID document using OAuth 2.1 (experimental)
Log | Files | Refs | README | LICENSE

mrzscan.ts (267B)


      1 export type MRZInfo = {
      2   firstName: string | null;
      3   lastName: string | null;
      4   birthDate: Date | null;
      5   sex: string | null;
      6   nationality: string | null;
      7   country: string | null;
      8 };
      9 
     10 export interface IDDocumentMRZScan {
     11   scan(image: string): Promise<MRZInfo>;
     12 }