Value of an Entry.
Util type to get the value of an Entry.
const entry: Entry<string, number> = ["🟢", 1];const entryValue: EntryValue<typeof entry> = entry[1]; Copy
const entry: Entry<string, number> = ["🟢", 1];const entryValue: EntryValue<typeof entry> = entry[1];
Entry type.
Value of an Entry.
Remarks
Util type to get the value of an Entry.
Example
See