Type Alias GetTSCustomMessageAggregateType<T>

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

Type Parameters