@scandit/web-datacapture-id
Version:
Scandit Data Capture SDK for the Web
15 lines (14 loc) • 449 B
TypeScript
import type { ScannerJSON } from "./Scanner";
import { IdCaptureScanner } from "./Scanner";
export type FullDocumentScannerJSON = ScannerJSON & {
options: {
barcode: boolean;
machineReadableZone: boolean;
visualInspectionZone: boolean;
};
};
export declare class FullDocumentScanner extends IdCaptureScanner {
protected readonly _isFull: boolean;
constructor();
toJSONObject(): FullDocumentScannerJSON;
}