mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 21:36:50 -05:00
Cache simplified indexed accesses to better handle circularly constrained indexed acceses (#24072)
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
type Loop<T, U extends Loop<T, U>> = {
|
||||
[P in keyof T]: U[P] extends boolean ? number : string;
|
||||
};
|
||||
Reference in New Issue
Block a user