TypeScript/tests/baselines/reference/moduleNoneErrors.js
Bill Ticehurst dd5dc3a967 Added module: none baseline
(cherry picked from commit d446d06f96)
2016-02-11 14:09:12 -08:00

15 lines
182 B
TypeScript

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