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