index.d.ts 224 B

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