Prettify
Resolve mapped types and show the derived keys and their types when hovering in VS Code, instead of just showing the names those mapped types are defined with.
type Prettify<T> = T extends Function ? T : [K in keyof T]: T[K];
Resolve mapped types and show the derived keys and their types when hovering in VS Code, instead of just showing the names those mapped types are defined with.