declare let x: { [x: string]: number };
x.yadda/**/;
Specify a quote style of 'single' and apply the quick fix at /**/.
Currently this is changed to
declare let x: { [x: string]: number };
x["yadda"];
but should switch to
declare let x: { [x: string]: number };
x['yadda'];
Specify a quote style of 'single' and apply the quick fix at
/**/.Currently this is changed to
but should switch to