Type Alias GetUserKickAccountSubscribedToAggregateType<T>

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

Type Parameters