UNPKG

scandit-web-datacapture-barcode

Version:

Scandit Data Capture SDK for the Web

12 lines (11 loc) 515 B
import type { FeedbackJSON } from "scandit-web-datacapture-core"; import { Feedback } from "scandit-web-datacapture-core"; import type { Serializable } from "scandit-web-datacapture-core/build/js/private/Serializable"; export interface BarcodeCaptureFeedbackJSON { success: FeedbackJSON; } export declare class BarcodeCaptureFeedback implements Serializable<BarcodeCaptureFeedbackJSON> { success: Feedback; static get default(): BarcodeCaptureFeedback; toJSONObject(): BarcodeCaptureFeedbackJSON; }