What is the Record type in typescript?
What does Record<K, T> mean in Typescript?
Typescript 2.1 introduced the Record type, describing it in an example:
// For every properties K of type T, transform it to U
function mapObject<K extends string, T, U>(obj: Record<K, T>,...