UNPKG

mindee

Version:

Mindee Client Library for Node.js

17 lines (16 loc) 596 B
import { Inference, StringDict, Page } from "../../parsing/common"; import { InvoiceSplitterV1Document } from "./invoiceSplitterV1Document"; /** * Invoice Splitter API version 1 inference prediction. */ export declare class InvoiceSplitterV1 extends Inference { /** The endpoint's name. */ endpointName: string; /** The endpoint's version. */ endpointVersion: string; /** The document-level prediction. */ prediction: InvoiceSplitterV1Document; /** The document's pages. */ pages: Page<InvoiceSplitterV1Document>[]; constructor(rawPrediction: StringDict); }