Type Alias GetGuildNotificationOverrideAggregateType<T>

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

Type Parameters