DisBot
    Preparing search index...

    Type Alias GetModerationScoutFormsDataAggregateType<T>

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

    Type Parameters