Files
2026-04-09 13:19:47 -05:00

12 lines
268 B
TypeScript

import { FeatureCollection, Polygon } from "@turf/helpers";
/**
* http://turfjs.org/docs.html#dissolve
*/
export default function dissolve(
featureCollection: FeatureCollection<Polygon>,
options?: {
propertyName?: string;
}
): FeatureCollection<Polygon>;