# _TupleOf

`type` in `utils` · v0.6.1

<https://docs.seedcord.org/packages/utils/0.6.1/types/tuple-of>

## Declaration

```ts
type _TupleOf<
    Length extends number,
    Fill
> = number extends Length
    ? Fill[]
    : BuildTupleDigitByDigit<`${Length}`, Fill>;
```
