mindee
Version:
Mindee Client Library for Node.js
15 lines (14 loc) • 387 B
TypeScript
import { OcrWord } from "./ocrWord.js";
import { StringDict } from "../../../parsing/index.js";
export declare class OcrPage {
/**
* List of words extracted from the document page.
*/
words: OcrWord[];
/**
* Full text content extracted from the document page.
*/
content: string;
constructor(serverResponse: StringDict);
toString(): string;
}