Created
June 25, 2019 15:09
-
-
Save Willmo36/1926c8f609a32d2da5b60dcde5072f19 to your computer and use it in GitHub Desktop.
TypeScript MapTo mapped type
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type MapTo<T extends Record<string, V>, K extends keyof V, V> = { | |
[K2 in keyof T]: T[K2][K] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment