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

Given a string index signature, what is `keyof Dict`?

interface Dict { [key: string]: boolean; } type K = keyof Dict;