Type Alias GetTTSCustomMessageAggregateType<T>

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

Type Parameters