UNPKG

@scandit/web-datacapture-id

Version:

Scandit Data Capture SDK for the Web

10 lines (9 loc) 335 B
export interface ScannerJSON { isFull: boolean; } export declare abstract class IdCaptureScanner { protected abstract readonly _isFull: boolean; static isSingleSideScanner(scanner: IdCaptureScanner): boolean; static isFullDocumentScanner(scanner: IdCaptureScanner): boolean; abstract toJSONObject(): ScannerJSON; }