UNPKG

dynamsoft-javascript-barcode

Version:

Dynamsoft Barcode Reader JS is a recognition SDK which enables you to embed barcode reading functionality in your web, desktop, and mobile applications. With a few lines of JavaScript code, you can develop a robust application to scan a linear barcode, QR

28 lines 792 B
import { LocalizationResult } from './localizationresult'; import { EnumBarcodeFormat } from "../enum/enumbarcodeformat"; /** * @see [C++ TextResult](https://www.dynamsoft.com/barcode-reader/programming/c-cplusplus/struct/TextResult.html?src=cpp&&ver=latest) */ export interface TextResult { /** * The barcode text. */ barcodeText: string; /** * The barcode format. */ barcodeFormat: number | EnumBarcodeFormat; /** * Barcode type in string. */ barcodeFormatString: string; /** * The barcode content in a byte array. */ barcodeBytes: number[]; /** * The corresponding localization result. */ localizationResult: LocalizationResult; } //# sourceMappingURL=textresult.d.ts.map