Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumTypeScriptindex signaturesSingle-choice MCQ

Given this mapped type with a template-literal key, what is `keyof Prefixed`?

type Prefixed = { [K in `data-${string}`]: string; }; type K = keyof Prefixed;