UNPKG

mindee

Version:

Mindee Client Library for Node.js

17 lines (16 loc) 547 B
import { Inference, StringDict, Page } from "../../parsing/common"; import { ReceiptV5Document } from "./receiptV5Document"; /** * Receipt API version 5 inference prediction. */ export declare class ReceiptV5 extends Inference { /** The endpoint's name. */ endpointName: string; /** The endpoint's version. */ endpointVersion: string; /** The document-level prediction. */ prediction: ReceiptV5Document; /** The document's pages. */ pages: Page<ReceiptV5Document>[]; constructor(rawPrediction: StringDict); }