Type Alias GetUserNotificationDataAggregateType<T>

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

Type Parameters