scandit-web-datacapture-barcode
Version:
Scandit Data Capture SDK for the Web
17 lines (16 loc) • 627 B
TypeScript
import type { BarcodeJSON, LocalizedOnlyBarcodeJSON } from "./Barcode";
import { Barcode, LocalizedOnlyBarcode } from "./Barcode";
export interface BarcodeCaptureSessionJSON {
newlyRecognizedBarcodes: BarcodeJSON[];
newlyLocalizedBarcodes: LocalizedOnlyBarcodeJSON[];
frameSequenceId: number;
}
export declare class BarcodeCaptureSession {
private _newlyRecognizedBarcodes;
private _newlyLocalizedBarcodes;
private _frameSequenceID;
get newlyRecognizedBarcodes(): Barcode[];
get newlyLocalizedBarcodes(): LocalizedOnlyBarcode[];
get frameSequenceID(): number;
private static fromJSON;
}