1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
//// [tests/cases/compiler/localAliasExportAssignment.ts] ////
//// [localAliasExportAssignment_0.ts]
var server: {
(): any;
};
export = server;
//// [localAliasExportAssignment_1.ts]
///<reference path='localAliasExportAssignment_0.ts'/>
import connect = require('./localAliasExportAssignment_0');
connect();
//// [localAliasExportAssignment_0.js]
"use strict";
var server;
module.exports = server;
//// [localAliasExportAssignment_1.js]
"use strict";
exports.__esModule = true;
///<reference path='localAliasExportAssignment_0.ts'/>
var connect = require("./localAliasExportAssignment_0");
connect();
|