TypeScript/tests/baselines/reference/modulePrologueSystem.js
2016-01-29 18:42:23 +02:00

22 lines
500 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);
}
}
});