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

17 lines
334 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 Bar from './foo';
Bar.fn();
let x: Bar.Thing;
let y: number = x.n;
// should error
let z = Foo;