UNPKG

mindee

Version:

Mindee Client Library for Node.js

15 lines (14 loc) 595 B
import { StringDict } from "../../../../v1/parsing/common/index.js"; import { ClassificationField } from "../../../../v1/parsing/standard/index.js"; import { IdCardV2Document } from "./idCardV2Document.js"; /** * Carte Nationale d'Identité API version 2.0 page data. */ export declare class IdCardV2Page extends IdCardV2Document { /** The sides of the document which are visible. */ documentSide: ClassificationField; /** The document type or format. */ documentType: ClassificationField; constructor(rawPrediction: StringDict, pageId?: number); toString(): string; }