TypeScript/tests/cases/conformance/externalModules/exportAssignmentTopLevelClodule.ts
2014-07-12 17:30:19 -07:00

16 lines
240 B
TypeScript

// @module: amd
// @Filename: foo_0.ts
class Foo {
test = "test";
}
module Foo {
export var answer = 42;
}
export = Foo;
// @Filename: foo_1.ts
import foo = require("./foo_0");
if(foo.answer === 42){
var x = new foo();
}