TypeScript/tests/baselines/reference/staticIndexer.js
2015-12-08 17:51:10 -08:00

12 lines
170 B
TypeScript

//// [staticIndexer.ts]
class C {
static [s: string]: number;
}
//// [staticIndexer.js]
var C = (function () {
function C() {
}
return C;
}());