Type Alias GetGuildDisableBrandingAggregateType<T>

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

Type Parameters