index.d.ts 296 B

12345678910111213
  1. import {
  2. Polygon,
  3. MultiPolygon,
  4. Feature,
  5. FeatureCollection,
  6. } from "@turf/helpers";
  7. /**
  8. * http://turfjs.org/docs/#unkink-polygon
  9. */
  10. export default function unkinkPolygon<T extends Polygon | MultiPolygon>(
  11. geojson: Feature<T> | FeatureCollection<T> | T
  12. ): FeatureCollection<Polygon>;