capacitor-plugin-scanbot-sdk
Version:
Scanbot Document and Barcode Scanner SDK for Capacitor
15 lines (14 loc) • 490 B
TypeScript
import type { DeepPartial } from '../../utils';
import { PartiallyConstructible } from '../../utils';
import { BarcodeItem } from '../barcode/BarcodeItem';
/**
Results of the barcode scan.
*/
export declare class BarcodeScannerResult extends PartiallyConstructible {
/**
Recognized barcode items.
*/
readonly items: BarcodeItem[];
/** @param source {@displayType `DeepPartial<BarcodeScannerResult>`} */
constructor(source?: DeepPartial<BarcodeScannerResult>);
}