shaKY-iota / type-challenges

Collection of TypeScript type challenges with online judge
https://tsch.js.org/
MIT License
0 stars 0 forks source link

2946 - ObjectEntries #36

Open shaKY-iota opened 2 years ago

shaKY-iota commented 2 years ago
// your answers
type ObjectEntries<T extends object> = Required<T> extends infer U ? { [P in keyof U]: [P, U[P]] }[keyof U] : never;