TypeScript/tests/baselines/reference/staticIndexer.js

12 lines
170 B
TypeScript

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