Value of an Entry.
const entry: Entry<string, number> = ["🟢", 1];const entryValue: EntryValue<typeof entry> = entry[1];
Value of an Entry.
Example