7 lines
181 B
TypeScript
7 lines
181 B
TypeScript
import { Feature, AllGeoJSON, Polygon } from "@turf/helpers";
|
|
|
|
/**
|
|
* http://turfjs.org/docs/#envelope
|
|
*/
|
|
export default function envelope(features: AllGeoJSON): Feature<Polygon>;
|