UNPKG

mindee

Version:

Mindee Client Library for Node.js

7 lines (6 loc) 261 B
import { Point } from "./point.js"; import { Polygon } from "./polygon.js"; /** A bounding box defined by 4 points. */ export declare class BoundingBox extends Polygon { constructor(topLeft: Point, topRight: Point, bottomRight: Point, bottomLeft: Point); }