Type Utils
    Preparing search index...

    Type Alias MapToStructs<Types>

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

    Type Parameters

    • Types extends any[]