Type alias EntryValue<Input>

EntryValue<Input>: Second<Input>

Value of an Entry.

Remarks

Util type to get the value of an Entry.

Example

const entry: Entry<string, number> = ["🟢", 1];
const entryValue: EntryValue<typeof entry> = entry[1];

See

Type Parameters

  • Input extends Entry

    Entry type.