TypeScript/tests/baselines/reference/indexSignatureWithInitializer.js

16 lines
292 B
TypeScript

//// [indexSignatureWithInitializer.ts]
// These used to be indexers, now they are computed properties
interface I {
[x = '']: string;
}
class C {
[x = 0]: string
}
//// [indexSignatureWithInitializer.js]
var C = (function () {
function C() {
}
return C;
})();