/** * Span-preserving range clamp. If the span of the input range is less * than (max - min) and an endpoint exceeds either the min or max value, * the range is translated such that the span is preserved and one * endpoint touches the boundary of the min/max range. * If the span exceeds (max - min), the range [min, max] is returned. */ export default function clampRange(range: number[], min: number, max: number): number[]; //# sourceMappingURL=clampRange.d.ts.map