wrongmove/immoweb/node_modules/@turf/hex-grid/index.d.ts
2025-05-26 19:41:36 +00:00

8 lines
246 B
TypeScript

import {Units, BBox, Polygons} from '@turf/helpers'
/**
* http://turfjs.org/docs/#hexgrid
*/
declare function hexGrid(bbox: BBox, cellSize: number, units?: Units, triangles?: boolean): Polygons;
declare namespace hexGrid { }
export = hexGrid;