Type Alias GetGuildMessageButtonAggregateType<T>

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

Type Parameters