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

13 lines
243 B
TypeScript

//// [staticMustPrecedePublic.ts]
class Outer {
static public intI: number;
static private stringF: string;
}
//// [staticMustPrecedePublic.js]
var Outer = (function () {
function Outer() {
}
return Outer;
}());