Type Alias GetGuildRobloxGameAggregateType<T>

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

Type Parameters