UNPKG

google-clustr

Version:

Performant Google Maps Point Clustering

7 lines (6 loc) 134 B
declare type Point = { x: number; y: number; }; declare function convexHull(points: Point[]): Point[]; export { convexHull };