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