TypeScript/tests/baselines/reference/computedPropertyNamesContextualType4_ES6.js

17 lines
280 B
TypeScript

//// [computedPropertyNamesContextualType4_ES6.ts]
interface I {
[s: string]: any;
[s: number]: any;
}
var o: I = {
[""+"foo"]: "",
[""+"bar"]: 0
}
//// [computedPropertyNamesContextualType4_ES6.js]
var o = {
["" + "foo"]: "",
["" + "bar"]: 0
};