UNPKG

dynamsoft-capture-vision-cordova

Version:
30 lines (29 loc) 645 B
import { Quadrilateral } from "./BasicStructures"; export interface BarcodeResult { /** * The barcode text. */ barcodeText: string; /** * The byte of barcodeText. */ barcodeBytes: string; /** * Barcode type in string. */ barcodeFormatString: string; /** * The corresponding localization result. */ barcodeLocation: BarcodeLocationResult; } export interface BarcodeLocationResult { /** * The angle of a barcode. Values range from 0 to 360. */ angle: number; /** * The quadrilateral */ quadrilateral: Quadrilateral; }