mindee
Version:
Mindee Client Library for Node.js
17 lines (16 loc) • 614 B
TypeScript
import { Inference, StringDict, Page } from "../../../v1/parsing/common/index.js";
import { InternationalIdV2Document } from "./internationalIdV2Document.js";
/**
* International ID API version 2 inference prediction.
*/
export declare class InternationalIdV2 extends Inference {
/** The endpoint's name. */
endpointName: string;
/** The endpoint's version. */
endpointVersion: string;
/** The document-level prediction. */
prediction: InternationalIdV2Document;
/** The document's pages. */
pages: Page<InternationalIdV2Document>[];
constructor(rawPrediction: StringDict);
}