Array of EntryOf.
const object = { "🟢": 1, "🟩": 2,};const entries: EntriesOf<typeof object> = Object.entries(object);
Array of EntryOf.
Example