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

12 lines
308 B
TypeScript

/// <reference types="geojson" />
type Feature = GeoJSON.Feature<any>;
type Features = GeoJSON.FeatureCollection<any>;
type BBox = [number, number, number, number];
/**
* http://turfjs.org/docs/#bbox
*/
declare function bbox(features: Feature | Features): BBox;
declare namespace bbox { }
export = bbox;