What is the type of `keyof EventMap` here?type Events = "click" | "scroll"; type EventMap = { [E in Events as `${E}:start` | `${E}:end`]: () => void };