DisBot
    Preparing search index...

    Type Alias GetModerationScoutCasesAggregateType<T>

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

    Type Parameters