Repeat
Generates a tuple type of length N where each element is of type T.
Example
type Test = Repeat<'foo', 3>;
// ['foo', 'foo', 'foo']RepeatGenerates a tuple type of length N where each element is of type T.
type Test = Repeat<'foo', 3>;
// ['foo', 'foo', 'foo']