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

What is `keyof T` for this template-literal index signature?

type T = { [K: `id_${string}`]: number; }; type K = keyof T;