@scandit/web-datacapture-id
Version:
Scandit Data Capture SDK for the Web
17 lines (16 loc) • 781 B
TypeScript
import type { MobileDocumentScanner, MobileDocumentScannerJSON } from "./mobileDocuments/MobileDocumentScanner";
import type { PhysicalDocumentScanner, PhysicalDocumentScannerJSON } from "./physicalDocuments/PhysicalDocumentScanner";
export interface IdCaptureScannerJSON {
physicalDocument: PhysicalDocumentScannerJSON | null;
mobileDocument: MobileDocumentScannerJSON | null;
}
export interface IdCaptureScannerOptions {
physicalDocument?: PhysicalDocumentScanner | null;
mobileDocument?: MobileDocumentScanner | null;
}
export declare class IdCaptureScanner {
physicalDocument?: PhysicalDocumentScanner | null;
mobileDocument?: MobileDocumentScanner | null;
constructor(options?: IdCaptureScannerOptions);
toJSONObject(): IdCaptureScannerJSON;
}