ObjectFromEntries hard #object

by jiangshan @jiangshanmeta

Take the Challenge

Implement the type version of ```Object.fromEntries``` For example: ```typescript interface Model { name: string; age: number; locations: string[] | null; } type ModelEntries = ['name', string] | ['age', number] | ['locations', string[] | null]; type result = ObjectFromEntries // expected to be Model ```
Back Share your Solutions Check out Solutions

Related Challenges

55・Union to Intersection