-
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
Record<T[K], T[]>
does not compile anymore
#38601
Comments
I think this can be demonstrated as short as below. let record: Record<number, string> = {}
let record2: Record<'abc'|'def', number> = {} // error here
|
But that error is correct! |
The change was introduced here #29571. This might work: const groupArrayByObjectProperty = <T extends Record<string, string>, K extends keyof T>(
array: T[], attributeGetter: (item: T) => T[K],
): Record<T[K], T[]> => array.reduce(
(previous, current) => {
const value = attributeGetter(current);
previous[value] = (previous[value] || []).concat(current);
return previous;
},
{} as Record<T[K], T[]>,
); |
I think I live with casting to |
Thank you very much, @jack-williams. That change seems to do the trick. |
TypeScript Version: 3.9.2
Search Terms:
Record
Symbol
Code
The function's purpose is to create an object from an array of objects, grouped by a value of the objects.
When grouped by the value of
a
becomes:The important aspect of this function is that the typing of the output object is correct.
Expected behavior:
The code compiles and works like it did on TS 3.8
Actual behavior:
I'm now getting these errors:
Did something change in the TS compiler that broke it? Or should it never have worked from the start? If so, what would have been the correct typing?
Playground Link:
https://www.typescriptlang.org/play/#code/MYewdgzgLgBA5gJxAVwA4EEEIIYE8BCuA8gEYBWApsFAApKoUJS4wC8MAPACowUAeUCmAAmEGNjC4ANDADSvAUNEwA1hVwgAZjC4A+ABQAoGCfFY8ALh0BtALozsUKAgCWJZIIDiFJ4yv6XQQBbKy4ASjZdGDBkIJJGGAAfGGhXMDgpQzCrACUqEARhbmtZextbKNYo7HNcADoECmFkYAojUw6YfVRGgDcXFAgZYGQsISgIqpgAb2NO+dBIWF7sABtkCjZxJ1d3Lx9BBH0RsbAJgG45+Y6ein7B6xX1ilst7r6B5AhHtY3XxOSdjCdUWwEcx1GjTOYUu106jSgozAMFu9y+sOuAF9Mh1ppjxGI8qBCsVSjIuHZdDjTDDDIZFhAQKsKHVViA4PpECgMLVCKRKNQ6CAGExcPprNNsFYAOTYaUyEgykjSzFlfR8SZRPh1bBhGFAA
Related Issues:
#37642
The text was updated successfully, but these errors were encountered: