UNPKG

@scandit/web-datacapture-id

Version:

Scandit Data Capture SDK for the Web

16 lines (15 loc) 660 B
import type { FeedbackJSON } from "@scandit/web-datacapture-core"; import { Feedback, Sound } from "@scandit/web-datacapture-core"; import type { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable"; export interface IdCaptureFeedbackJSON { idCaptured: FeedbackJSON; idRejected: FeedbackJSON; } export declare class IdCaptureFeedback implements Serializable<IdCaptureFeedbackJSON> { idCaptured: Feedback; idRejected: Feedback; static get defaultFeedback(): IdCaptureFeedback; static get defaultSuccessSound(): Sound; static get defaultFailureSound(): Sound; toJSONObject(): IdCaptureFeedbackJSON; }