mindee
Version:
Mindee Client Library for Node.js
17 lines (16 loc) • 578 B
TypeScript
import { Inference, StringDict, Page } from "../../parsing/common";
import { DeliveryNoteV1Document } from "./deliveryNoteV1Document";
/**
* Delivery note API version 1 inference prediction.
*/
export declare class DeliveryNoteV1 extends Inference {
/** The endpoint's name. */
endpointName: string;
/** The endpoint's version. */
endpointVersion: string;
/** The document-level prediction. */
prediction: DeliveryNoteV1Document;
/** The document's pages. */
pages: Page<DeliveryNoteV1Document>[];
constructor(rawPrediction: StringDict);
}