DisBot
    Preparing search index...

    Type Alias GetVanitysAggregateType<T>

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

    Type Parameters