Type Alias GetTTSMessageEmbedAggregateType<T>

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

Type Parameters