Type Alias GetYTSCustomMessageAggregateType<T>

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

Type Parameters