import type { IRange } from "./IRange"; /** * Helper type that validates that a tuple does not have a length greater than N. * * For example, `TupleWithMaxLength` will allow string tuples of size 0, 1, 2, or 3. */ export type TupleWithMaxLength = readonly T[] & { length: IRange<0, MaxLength>; }; //# sourceMappingURL=TupleWithMaxLength.d.ts.map