Context: https://stackoverflow.com/q/60737502 ```js const obj = {first: 'First Name', last: 'Last Name'}; type Keys = keyof typeof obj; // first | last ``` ```js const map = new Map([ [first, 'First Name'], [last: 'Last Name'] ]); type Keys = ???????? ```
Context: https://stackoverflow.com/q/60737502