Type Alias GetClientTwitchAggregateType<T>

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

Type Parameters