DisBot
    Preparing search index...

    Type Alias GetVanityEmbedAggregateType<T>

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

    Type Parameters