TypeScript/tests/cases/compiler/localAliasExportAssignment.ts
2014-07-12 17:30:19 -07:00

16 lines
303 B
TypeScript

//@module: commonjs
// @Filename: localAliasExportAssignment_0.ts
var server: {
(): any;
};
export = server;
// @Filename: localAliasExportAssignment_1.ts
///<reference path='localAliasExportAssignment_0.ts'/>
import connect = require('localAliasExportAssignment_0');
connect();