TypeScript/tests/baselines/reference/umd2.js
Ryan Cavanaugh 44aa7388ea UMD support
2016-03-09 10:08:24 -08:00

19 lines
270 B
TypeScript

//// [tests/cases/conformance/externalModules/umd2.ts] ////
//// [foo.d.ts]
export var x: number;
export function fn(): void;
export as namespace Foo;
//// [a.ts]
Foo.fn();
let x: Foo.Thing;
let y: number = x.n;
//// [a.js]
Foo.fn();
var x;
var y = x.n;