TypeScript/tests/baselines/reference/moduleNoneErrors.js
2017-02-10 12:48:14 -08:00

16 lines
210 B
TypeScript

//// [a.ts]
export class Foo {
foo: string;
}
//// [a.js]
"use strict";
exports.__esModule = true;
var Foo = (function () {
function Foo() {
}
return Foo;
}());
exports.Foo = Foo;