UNPKG

@dominicstop/utils

Version:

Yet another event emitter written in typescript.

6 lines 263 B
import { Point } from "../Point"; import { BoxedShape } from "./BoxedShape"; export interface BoxedPolygon<Value extends Record<string, unknown>> extends BoxedShape<Value> { get cornerPointsAsArray(): Array<Point>; } //# sourceMappingURL=BoxedPolygon.d.ts.map