mindee
Version:
Mindee Client Library for Node.js
14 lines (13 loc) • 324 B
TypeScript
import { StringDict } from "../../../parsing/index.js";
import { OcrPage } from "./ocrPage.js";
/**
* OCR result info.
*/
export declare class OcrResult {
/**
* List of OCR results for each page in the document.
*/
pages: OcrPage[];
constructor(serverResponse: StringDict);
toString(): string;
}