index.d.ts 280 B

12345678910111213
  1. import { Units, LineString, Feature } from "@turf/helpers";
  2. /**
  3. * http://turfjs.org/docs/
  4. */
  5. export default function lineSliceAlong(
  6. line: Feature<LineString> | LineString,
  7. startDist: number,
  8. stopDist: number,
  9. options?: {
  10. units?: Units;
  11. }
  12. ): Feature<LineString>;