UNPKG

@scandit/web-datacapture-barcode

Version:

Scandit Data Capture SDK for the Web

25 lines (22 loc) 957 B
import { StringSerializable } from '@scandit/web-datacapture-core/build/js/private/Serializable'; import { BarcodeJSON, Barcode } from './Barcode.js'; import { LocalizedOnlyBarcodeJSON, LocalizedOnlyBarcode } from './LocalizedOnlyBarcode.js'; import '@scandit/web-datacapture-core'; import './EncodingRange.js'; import './StructuredAppendData.js'; interface BarcodeCaptureSessionJSON { newlyRecognizedBarcode: BarcodeJSON | null; newlyLocalizedBarcodes: LocalizedOnlyBarcodeJSON[]; frameSequenceId: number; } declare class BarcodeCaptureSession implements StringSerializable { private _newlyRecognizedBarcode; private _newlyLocalizedBarcodes; private _frameSequenceID; get newlyRecognizedBarcode(): Barcode | null; get newlyLocalizedBarcodes(): LocalizedOnlyBarcode[]; get frameSequenceID(): number; private static fromJSON; toJSON(): string; } export { BarcodeCaptureSession, type BarcodeCaptureSessionJSON };