index.d.ts 243 B

123456789
  1. import { FeatureCollection, BBox, Point, Polygon } from "@turf/helpers";
  2. /**
  3. * http://turfjs.org/docs/#voronoi
  4. */
  5. export default function voronoi(
  6. points: FeatureCollection<Point>,
  7. options: { bbox: BBox }
  8. ): FeatureCollection<Polygon>;