UNPKG

mindee

Version:

Mindee Client Library for Node.js

12 lines (11 loc) 385 B
import { Point } from "./point"; /** A simple bounding box defined by 4 coordinates: xMin, yMin, xMax, yMax */ export declare class BBox { xMin: number; yMin: number; xMax: number; yMax: number; constructor(xMin: number, yMin: number, xMax: number, yMax: number); } /** A bounding box defined by 4 points. */ export type BoundingBox = [Point, Point, Point, Point];