TypeScript/tests/cases/compiler/typeUsedAsValueError2.ts

21 lines
426 B
TypeScript

// @module: amd
// @filename: helloInterface.ts
interface HelloInterface {
world: any;
}
export = HelloInterface;
// @filename: helloNamespace.ts
namespace HelloNamespace {
export type world = any;
}
export = HelloNamespace;
// @filename: world.ts
import HelloInterface = require("helloInterface");
import HelloNamespace = require("helloNamespace");
HelloInterface.world;
HelloNamespace.world;