8 lines
246 B
TypeScript
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;
|