import type { IRange } from "./IRange"; /** * Helper type that validates that a tuple has a length between `MinLength` and `MaxLength` * (inclusive on both ends). * * For example, `TupleWithLengthBetween` will allow string tuples of size 2, 3, or 4. */ export type TupleWithLengthBetween = readonly T[] & { length: IRange; }; //# sourceMappingURL=TupleWithLengthBetween.d.ts.map