ObjectEntries medium #object

by jiangshan @jiangshanmeta

Take the Challenge

Implement the type version of ```Object.entries``` For example ```typescript interface Model { name: string; age: number; locations: string[] | null; } type modelEntries = ObjectEntries // ['name', string] | ['age', number] | ['locations', string[] | null]; ```
Back Share your Solutions Check out Solutions