Key of an Entry.
Util type to get the key of an Entry.
const entry: Entry<string, number> = ["🟢", 1];const entryKey: EntryKey<typeof entry> = entry[0]; Copy
const entry: Entry<string, number> = ["🟢", 1];const entryKey: EntryKey<typeof entry> = entry[0];
Entry type.
Key of an Entry.
Remarks
Util type to get the key of an Entry.
Example
See