UNPKG

mindee

Version:

Mindee Client Library for Node.js

17 lines (16 loc) 602 B
import { Inference, StringDict, Page } from "../../../v1/parsing/common/index.js"; import { BarcodeReaderV1Document } from "./barcodeReaderV1Document.js"; /** * Barcode Reader API version 1 inference prediction. */ export declare class BarcodeReaderV1 extends Inference { /** The endpoint's name. */ endpointName: string; /** The endpoint's version. */ endpointVersion: string; /** The document-level prediction. */ prediction: BarcodeReaderV1Document; /** The document's pages. */ pages: Page<BarcodeReaderV1Document>[]; constructor(rawPrediction: StringDict); }