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