Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumTypeScripttemplate literal typesSingle-choice MCQ

What is the type of `keyof EventMap` here?

type Events = "click" | "scroll"; type EventMap = { [E in Events as `${E}:start` | `${E}:end`]: () => void };