Files
turftracker/frontend/node_modules/@turf/unkink-polygon/index.d.ts
2026-04-09 13:19:47 -05:00

14 lines
296 B
TypeScript

import {
Polygon,
MultiPolygon,
Feature,
FeatureCollection,
} from "@turf/helpers";
/**
* http://turfjs.org/docs/#unkink-polygon
*/
export default function unkinkPolygon<T extends Polygon | MultiPolygon>(
geojson: Feature<T> | FeatureCollection<T> | T
): FeatureCollection<Polygon>;