TypeScript/tests/cases/conformance/externalModules/umd8.ts
2016-09-14 15:56:43 -07:00

22 lines
446 B
TypeScript

// @module: commonjs
// @noImplicitReferences: true
// @filename: foo.d.ts
declare class Thing {
foo(): number;
}
declare namespace Thing {
interface SubThing { }
}
export = Thing;
export as namespace Foo;
// @filename: a.ts
/// <reference path="foo.d.ts" />
import * as ff from './foo';
let y: Foo; // OK in type position
y.foo();
let z: Foo.SubThing; // OK in ns position
let x: any = Foo; // Not OK in value position