mindee
Version:
Mindee Client Library for Node.js
14 lines (13 loc) • 400 B
TypeScript
import { Polygon } from "../../../geometry";
import { StringDict } from "../../common";
/**
* Location of a field.
*/
export declare class FieldLocation {
/** Free polygon made up of points (can be null when not provided). */
readonly polygon: Polygon | null;
/** Page ID. */
readonly page: number | undefined;
constructor(serverResponse: StringDict);
toString(): string;
}