mindee
Version:
Mindee Client Library for Node.js
15 lines (14 loc) • 388 B
TypeScript
import { Polygon } from "../../../geometry/index.js";
import { StringDict } from "../../../parsing/index.js";
export declare class OcrWord {
/**
* Text content of the word.
*/
content: string;
/**
* Position information as a list of points in clockwise order.
*/
polygon: Polygon;
constructor(serverResponse: StringDict);
toString(): string;
}