Type Alias GetTWSCustomMessageAggregateType<T>

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

Type Parameters