Type Alias GetTWSMessageEmbedAggregateType<T>

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

Type Parameters