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