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

Under `noUncheckedIndexedAccess`, what is the type of `v` from a dotted access on a string index signature?

interface Dict { [key: string]: number; } declare const d: Dict; const v = d.someKey;