TypeScript/tests/baselines/reference/exportVisibility.js
2014-07-12 17:30:19 -07:00

24 lines
353 B
JavaScript

//// [exportVisibility.ts]
export class Foo {
}
export var foo = new Foo();
export function test(foo: Foo) {
return true;
}
//// [exportVisibility.js]
var Foo = (function () {
function Foo() {
}
return Foo;
})();
exports.Foo = Foo;
exports.foo = new Foo();
function test(foo) {
return true;
}
exports.test = test;