UNPKG

@scandit/web-datacapture-id

Version:

Scandit Data Capture SDK for the Web

15 lines (14 loc) 651 B
import type { IdCaptureDocumentJSON } from "./IdCaptureDocument"; import { IdCaptureDocument, IdCaptureDocumentType } from "./IdCaptureDocument"; import type { RegionSpecificSubtype } from "./RegionSpecificSubtype"; import { Region } from "../Region"; export interface RegionSpecificDocumentTypeJSON extends IdCaptureDocumentJSON { documentSubtype: string; } export declare class RegionSpecific extends IdCaptureDocument { readonly documentType: IdCaptureDocumentType; readonly subtype: RegionSpecificSubtype; constructor(subtype: RegionSpecificSubtype); get region(): Region; toJSONObject(): RegionSpecificDocumentTypeJSON; }