mindee
Version:
Mindee Client Library for Node.js
17 lines (16 loc) • 520 B
TypeScript
import { Prediction, StringDict } from "../../parsing/common";
import { StringField } from "../../parsing/standard";
/**
* Barcode Reader API version 1.0 document data.
*/
export declare class BarcodeReaderV1Document implements Prediction {
/** List of decoded 1D barcodes. */
codes1D: StringField[];
/** List of decoded 2D barcodes. */
codes2D: StringField[];
constructor(rawPrediction: StringDict, pageId?: number);
/**
* Default string representation.
*/
toString(): string;
}