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

13 lines
247 B
TypeScript

// @Filename: foo1.ts
export function x(){
return true;
}
// @Filename: foo2.ts
import foo1 = require('./foo1');
var x = foo1.x;
export = x;
// @Filename: foo3.ts
import foo2 = require('./foo2');
var x = foo2(); // should be boolean