@fkui/logic
    Preparing search index...

    Type Alias BuildDepth<N, T>

    BuildDepth: T["length"] extends N ? T : BuildDepth<N, [...T, unknown]>

    Constructs a tuple type of a specific length N. Used internally for recursion depth tracking.

    Type Parameters

    • N extends number
    • T extends unknown[] = []

    v6.38.0