Type Alias GetRSCustomMessageAggregateType<T>

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

Type Parameters