Type Alias GetTWSMessageButtonAggregateType<T>

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

Type Parameters