TypeScript/tests/cases/conformance/externalModules/umd8.ts

22 lines
446 B
TypeScript
Raw Normal View History

2016-03-10 19:11:48 +01:00
// @module: commonjs
// @noImplicitReferences: true
// @filename: foo.d.ts
declare class Thing {
foo(): number;
}
declare namespace Thing {
interface SubThing { }
}
2016-03-10 19:11:48 +01:00
export = Thing;
export as namespace Foo;
// @filename: a.ts
/// <reference path="foo.d.ts" />
import * as ff from './foo';
2016-03-10 19:11:48 +01:00
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