mindee
Version:
Mindee Client Library for Node.js
12 lines (11 loc) • 324 B
TypeScript
import { StringDict } from "../../../parsing/stringDict.js";
import { OcrPage } from "./ocrPage.js";
export declare class MvisionV1 {
/** List of words found on the page. */
pages: OcrPage[];
constructor(rawPrediction: StringDict);
/**
* Default string representation.
*/
toString(): string;
}