Type Alias GetWSMessageEmbedAggregateType<T>

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

Type Parameters