Type Alias GetCSMessageEmbedAggregateType<T>

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

Type Parameters