UNPKG

308 BTypeScriptView Raw
1/// <reference types="geojson" />
2
3type Feature = GeoJSON.Feature<any>;
4type Features = GeoJSON.FeatureCollection<any>;
5type BBox = [number, number, number, number];
6
7/**
8 * http://turfjs.org/docs/#bbox
9 */
10declare function bbox(features: Feature | Features): BBox;
11declare namespace bbox { }
12export = bbox;