UNPKG

cordova-plugin-scanbot-barcode-scanner

Version:

Cordova Plugin for the Scanbot Barcode Scanner SDK

10 lines (9 loc) 221 B
import { Status } from "./cordova_types"; export type ResultCallback<T> = (result: T) => void; export interface ResultWrapper<T> { status: Status; data?: T; } export interface ErrorResult { message: string; }