UNPKG

301 BTypeScriptView Raw
1import type { PathArray, SegmentProperties } from '../types';
2/**
3 * Returns the segment, its index and length as well as
4 * the length to that segment at a given length in a path.
5 */
6export declare function getPropertiesAtLength(pathInput: string | PathArray, distance?: number): SegmentProperties;