fix: propagating a downstream fix on typescript (#3496)

Replace property access on objects with an index signature type, with an index access.

Previously, you could write:

```
interface IdxSig {
  [key: string]: string;
}

function propAccess(x: IdxSig) {
  x.prop;
}
```
1 file changed