Key of an Entry.
const entry: Entry<string, number> = ["🟢", 1];const entryKey: EntryKey<typeof entry> = entry[0];
Key of an Entry.
Example