index.d.ts 268 B

1234567891011
  1. import { FeatureCollection, Polygon } from "@turf/helpers";
  2. /**
  3. * http://turfjs.org/docs.html#dissolve
  4. */
  5. export default function dissolve(
  6. featureCollection: FeatureCollection<Polygon>,
  7. options?: {
  8. propertyName?: string;
  9. }
  10. ): FeatureCollection<Polygon>;