mindee
Version:
Mindee Client Library for Node.js
11 lines (10 loc) • 317 B
TypeScript
import { StringDict } from "../../../../parsing/stringDict.js";
import { RawTextPage } from "./rawTextPage.js";
export declare class RawText {
/**
* List of pages with their extracted text content.
*/
pages: Array<RawTextPage>;
constructor(serverResponse: StringDict);
toString(): string;
}