Type Utils
    Preparing search index...

    Type Alias MapToStructs<Types>

    MapToStructs: Types extends []
        ? []
        : Types extends [infer T0, ...(infer TRest)]
            ? [
                V3.GenericStruct<T0, true>
                | V3.CustomStruct<T0>
                | V3.StructType,
                ...MapToStructs<TRest>,
            ]
            : (V3.GenericStruct<any, true> | V3.CustomStruct<any> | V3.StructType)[]

    Type Parameters

    • Types extends any[]