You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<T=unknown>(arrays: Array<Input<T>>): typedndarray<T>;// FIXME: this is a tricky one to type correctly, as the actual output dtype depends on type promotion rules
55
52
@@ -68,10 +65,7 @@ interface Concat1d {
68
65
* var y = array( [ -5.0, 6.0, -7.0, -8.0, 9.0, -10.0 ] );
<T=unknown>(arg: Input<T>, ...arrays: Array<Input<T>>): typedndarray<T>;// FIXME: this is a tricky one to type correctly, as the actual output dtype depends on type promotion rules
assign<T=unknown,U=unknown,Vextendstypedndarray<U>=typedndarray<U>>(arg1: Input<T>,arg2: Input<T>|V, ...args: Array<Input<T>|V>): V;// FIXME: in order to more robustly return a correct output type here, we'd likely need to use overloads with varying arity. The issue here is that `V` needs to be the last argument, which is not captured here.
133
121
}
@@ -146,10 +134,7 @@ interface Concat1d {
146
134
* var y = array( [ -5.0, 6.0, -7.0, -8.0, 9.0, -10.0 ] );
0 commit comments