TypeScript/tests/cases/compiler/localAliasExportAssignment.ts

16 lines
306 B
TypeScript
Raw Normal View History

2015-09-15 20:43:28 +02:00
// @module: commonjs
2014-07-13 01:04:16 +02:00
// @Filename: localAliasExportAssignment_0.ts
var server: {
(): any;
};
export = server;
// @Filename: localAliasExportAssignment_1.ts
///<reference path='localAliasExportAssignment_0.ts'/>
2015-09-15 20:43:28 +02:00
import connect = require('./localAliasExportAssignment_0');
2014-07-13 01:04:16 +02:00
connect();