DisBot
    Preparing search index...

    Type Alias GetGuildLoggingAggregateType<T>

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

    Type Parameters