14 lines
280 B
TypeScript
14 lines
280 B
TypeScript
import { Units, LineString, Feature } from "@turf/helpers";
|
|
|
|
/**
|
|
* http://turfjs.org/docs/
|
|
*/
|
|
export default function lineSliceAlong(
|
|
line: Feature<LineString> | LineString,
|
|
startDist: number,
|
|
stopDist: number,
|
|
options?: {
|
|
units?: Units;
|
|
}
|
|
): Feature<LineString>;
|