augment-vir - v32.2.2
    Preparing search index...

    Type Alias UnionToTuple<Union>

    UnionToTuple: UnionToTupleHelper<Union> extends infer Result extends
        UnknownArray
        ? Result
        : never

    Convert a union type into an unordered tuple type of its elements. The order of the resulting tuple is not guaranteed.

    Copied from the UnionToTuple type in type-fest v5.6 so that this package's public types do not depend on type-fest (see the note in type-checks.ts).

    Type Parameters

    • Union