Type Alias GetUserTwitchAccountAggregateType<T>

GetUserTwitchAccountAggregateType<T>: {
    [P in keyof T & keyof AggregateUserTwitchAccount]: P extends "_count" | "count"
        ? T[P] extends true
            ? number
            : GetScalarType<T[P], AggregateUserTwitchAccount[P]>
        : GetScalarType<T[P], AggregateUserTwitchAccount[P]>
}

Type Parameters