DisBot
    Preparing search index...

    Type Alias GetModerationScoutReportsAggregateType<T>

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

    Type Parameters