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

14 lines
256 B
TypeScript

import { AllGeoJSON } from "@turf/helpers";
/**
* http://turfjs.org/docs/#simplify
*/
export default function simplify<T extends AllGeoJSON>(
geojson: T,
options?: {
tolerance?: number;
highQuality?: boolean;
mutate?: boolean;
}
): T;