Type Alias GetNotificationProviderAggregateType<T>

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

Type Parameters