Type Alias GetWSCustomMessageAggregateType<T>

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

Type Parameters