TypeScript/tests/cases/compiler/localAliasExportAssignment.ts
2015-09-15 11:43:28 -07:00

16 lines
306 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();