Type Alias GetGuildDropsGameAggregateType<T>

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

Type Parameters