-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow rest elements to follow other rest elements in tuple types #55446
Conversation
This PR doesn't have any linked issues. Please open an issue that references this PR. From there we can discuss and prioritise. |
Thoughts on going the other direction and erroring in both cases?
|
I dont rly think that multiple variadic elements in a tuple are usable. Even trailing non-variadic elements are already quirky to handle at runtime |
@Andarist Yeah you convinced me it wouldn't be worth implementing last time we discussed it. That said, I think given that, do you think disallowing every form of |
It would be a breaking change. The behavior of combining different tuple types through a normalization algorithm sounds useful to me. It also supports more than just multiple rest elements, optional ones are also supported, and with your proposal, all of that would have to be an error. Example of what works today: type A = [number, string?];
type B = [...boolean[], boolean];
type C = [bigint, ...bigint[], ...B, ...A]; // [bigint, ...(string | number | bigint | boolean | undefined)[]] |
@Andarist I'm not suggesting Whether TS supports it or not (and I understand why doing so doesn't seem worthwhile), |
That still would be a breaking change for cases like this: type JoinArrays<T1 extends readonly unknown[], T2 extends readonly unknown[]> = [...T1, ...T2]
type Result1 = JoinArrays<string[], number[]> // (string | number)[] This behavior is rather useful and we can't disallow type JoinArrays<T1 extends readonly unknown[], T2 extends readonly unknown[]> = [...T1, ...T2]
type Result2 = JoinArrays<[number, number], [boolean]> // [number, number, boolean] We have variadic elements here (and not rest ones). Technically it's trivial~ to allow this while disallowing multiple rests. Syntactically they both look the same though. I find it a hard sell for only one of them to work. If the generic variant with variadic elements works and we can "join" array types using it then IMHO it only makes sense for the non-generic case to work in the same way. |
@Andarist Good point, I hadn't considered this. That may actually help clarify some of the motivation for the seemingly arbitrary existing behavior. Perhaps the intention was to disallow multiple rest elements when it would always just be reduced to a union. If that is the case, While I think this approach could help avoid some unexpected results, neither approach feels great and I understand wanting to standardize the behavior. Given this, I think the ideal solution really would be to implement a restrictive version of |
I think that this restriction is somewhat artificial and doesn't bring a lot of value. Those are allowed and work OK: