import type { Enumerated } from './Enumerated'; /** * Returns a range from TMin to TMax (without TMax) * * @example * Range<1, 5> -> 1 | 2 | 3 | 4 */ export type Range = Exclude, Enumerated>; //# sourceMappingURL=Range.d.ts.map