# _TupleOf

`type` in `services` · v0.8.2

<https://docs.seedcord.org/packages/services/0.8.2/types/tuple-of>

## Declaration

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