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

22 lines
386 B
TypeScript

//// [tests/cases/conformance/externalModules/umd1.ts] ////
//// [foo.d.ts]
export var x: number;
export function fn(): void;
export interface Thing { n: typeof x }
export as namespace Foo;
//// [a.ts]
/// <reference path="foo.d.ts" />
Foo.fn();
let x: Foo.Thing;
let y: number = x.n;
//// [a.js]
/// <reference path="foo.d.ts" />
exports.Foo.fn();
var x;
var y = x.n;