TypeScript/tests/cases/conformance/externalModules/umd3.ts
Ryan Cavanaugh 44aa7388ea UMD support
2016-03-09 10:08:24 -08:00

15 lines
303 B
TypeScript

// @module: commonjs
// @noImplicitReferences: true
// @filename: foo.d.ts
export var x: number;
export function fn(): void;
export interface Thing { n: typeof x }
export as namespace Foo;
// @filename: a.ts
import * as Foo from './foo';
Foo.fn();
let x: Foo.Thing;
let y: number = x.n;