/** * Predicate that returns true if the value lies within the span * of the given range. The left and right flags control the use * of inclusive (true) or exclusive (false) comparisons. */ export default function inrange(value: number, range: readonly number[], left?: boolean, right?: boolean): boolean; //# sourceMappingURL=inrange.d.ts.map