mindee
Version:
Mindee Client Library for Node.js
17 lines (16 loc) • 550 B
TypeScript
import { Prediction, StringDict } from "../../../v1/parsing/common/index.js";
import { StringField } from "../../../v1/parsing/standard/index.js";
/**
* 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;
}