Object or array Entry.
const object = { "🟢": 1, "🟩": 2,};const entries: EntryOf<typeof object> = Object.entries(object)[0];
Object or array Entry.
Example