TypeScript/tests/baselines/reference/modulePrologueSystem.js
2016-04-12 16:28:51 -07:00

23 lines
504 B
TypeScript

//// [modulePrologueSystem.ts]
"use strict";
export class Foo {}
//// [modulePrologueSystem.js]
System.register([], function (exports_1, context_1) {
"use strict";
var __moduleName = context_1 && context_1.id;
var Foo;
return {
setters: [],
execute: function () {
Foo = (function () {
function Foo() {
}
return Foo;
}());
exports_1("Foo", Foo);
}
};
});