index.d.ts 256 B

12345678910111213
  1. import { AllGeoJSON } from "@turf/helpers";
  2. /**
  3. * http://turfjs.org/docs/#simplify
  4. */
  5. export default function simplify<T extends AllGeoJSON>(
  6. geojson: T,
  7. options?: {
  8. tolerance?: number;
  9. highQuality?: boolean;
  10. mutate?: boolean;
  11. }
  12. ): T;