dynamsoft-capture-vision-cordova
Version:
Dynamsoft Capture Vision Cordova SDK
30 lines (29 loc) • 645 B
TypeScript
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;
}