Support for reverse mapped types with intersection constraint #55927
Labels
Help Wanted
You can do this
Possible Improvement
The current behavior isn't wrong, but it's possible to see that it might be better in some cases
Milestone
π Search Terms
"reverse mapped types", "intersection"
β Viability Checklist
β Suggestion
I'd like to see reverse mapped types capabilities enhanced to support an intersection constraint, providing users with the ability to enable EPC (Excess Property Checking) on type parameters inference sites.
Reverse mapped types are a powerful tool. Currently TypeScript is able to reverse three kind of mapped types:
{ [P in keyof T]: X }
{ [P in K]: X }
, whereK
is a type parameterThis feature request asks support for a fourth case: a mapped type with an intersection constraint, as long as the intersection contains one of the constraints of the previous cases.
While the union constraint could be seen as a way to force the presence of some properties, the intersection one could be seen as a way to prevent the presence of extra properties.
May be closed by #55811.
π Motivating Example
In this example, taken from #12936, the type parameter
U
is the one that gets inferred by reversing the mapped type that has an intersection constraint:keyof U & keyof T
. It should be inferred as{ x: 1; y: "y"; z: string }
or, even better, as{ x: 1; y: "y"; }
(withz
stripped away because it wouldn't get through the application of the mapped type anyway). Either way, the application of the mapped type on the just inferredU
imposes the absence of extra properties with respect to the ones declared inT = {x: number, y: string}
.π» Use Cases
What do you want to use this for?
It's a way to enable EPC on type parameters when it's really needed. Motivating comment.
What shortcomings exist with current approaches/workarounds?
One of the main workaround is the use of type functions like the following:
But then you get error messages like
Type 'number' is not assignable to type 'never'
that are bad for DX, expecially if compared with EPC ones.What's good about this proposal, and the related PR, is the fact that it lets the user enable EPC on type parameters without fundamentally change how TS treats type parameters inference. It's just a nice side effect of enhancing reverse mapped types' capabilities.
The text was updated successfully, but these errors were encountered: