@arcmantle/library
    Preparing search index...

    Type Alias Repeat<N, T>

    Repeat: N extends 0 ? [] : [T, ...Repeat<Decr<N>, T>]

    Creates a tuple of T with a length of N.

    Type Parameters

    • N extends number
    • T