import { Point } from "./Point"; /** Quads described by exactly four points are the only supported polygon type. */ export type Polygon = Point[];