| 123456789101112131415161718192021 |
- import { LineString, MultiLineString, Feature, FeatureCollection, GeometryCollection } from 'geojson';
- import { Units } from '@turf/helpers';
- /**
- * http://turfjs.org/docs/#lineChunk
- */
- declare function lineChunk<T extends LineString | MultiLineString>(
- geojson:
- | Feature<T>
- | FeatureCollection<T>
- | T
- | GeometryCollection
- | Feature<GeometryCollection>,
- segmentLength: number,
- options?: {
- units?: Units;
- reverse?: boolean;
- }
- ): FeatureCollection<LineString>;
- export { lineChunk as default, lineChunk };
|