```ts const otherThing = "otherThing"; interface Foo { ["thing"]: number; [otherThing]: string; } declare var x: Foo; x./**/ ``` **Expected**: completions for `thing` and `[otherThing]`. **Actual**: completions for only `[otherThing]`
Expected: completions for
thingand[otherThing].Actual: completions for only
[otherThing]