Type Alias GetGuildDropsAggregateType<T>

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

Type Parameters