Given this mapped type with a template-literal key, what is `keyof Prefixed`?type Prefixed = { [K in `data-${string}`]: string; }; type K = keyof Prefixed;