With typescript@master: ```ts // with "strictNullChecks": true interface A { [key: string]: string } const x: A = {} const b = x['undefined'] // b is string instead of string | undefined ```