mindee
Version:
Mindee Client Library for Node.js
18 lines (17 loc) • 608 B
TypeScript
import { Inference, StringDict, Page } from "../../../parsing/common";
import { IdCardV1Document } from "./idCardV1Document";
import { IdCardV1Page } from "./idCardV1Page";
/**
* Carte Nationale d'Identité API version 1 inference prediction.
*/
export declare class IdCardV1 extends Inference {
/** The endpoint's name. */
endpointName: string;
/** The endpoint's version. */
endpointVersion: string;
/** The document-level prediction. */
prediction: IdCardV1Document;
/** The document's pages. */
pages: Page<IdCardV1Page>[];
constructor(rawPrediction: StringDict);
}