UNPKG

@scandit/web-datacapture-id

Version:

Scandit Data Capture SDK for the Web

23 lines (22 loc) 959 B
import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable"; import { DateResult } from "./DateResult"; import type { MRZResultJSON } from "../SerializedTypes"; export declare class MRZResult implements Serializable<MRZResultJSON> { protected json: MRZResultJSON; get documentCode(): string; get namesAreTruncated(): boolean; get optional(): string | null; get optional1(): string | null; get capturedMrz(): string; get personalIdNumber(): string | null; get renewalTimes(): number | null; get fullNameSimplifiedChinese(): string | null; get omittedCharacterCountInGbkName(): number | null; get omittedNameCount(): number | null; get issuingAuthorityCode(): string | null; get passportIssuerIso(): string | null; get passportNumber(): string | null; get passportDateOfExpiry(): DateResult | null; private static fromJSON; toJSONObject(): MRZResultJSON; }