Type Alias GetCFMessageEmbedAggregateType<T>

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

Type Parameters