type-fest icon indicating copy to clipboard operation
type-fest copied to clipboard

`keyof` for Map

Open fregante opened this issue 3 years ago • 2 comments

Context: https://stackoverflow.com/q/60737502

const obj = {first: 'First Name', last: 'Last Name'};
type Keys = keyof typeof obj; // first | last
const map = new Map([
	[first, 'First Name'],
	[last: 'Last Name']
]);
type Keys = ????????

fregante avatar Jul 01 '21 17:07 fregante

👍

sindresorhus avatar Jul 01 '21 17:07 sindresorhus

  • Related/similar: https://github.com/sindresorhus/type-fest/issues/115

fregante avatar Jul 20 '21 06:07 fregante