TypeScript/tests/baselines/reference/localAliasExportAssignment.types

21 lines
654 B
Text

=== tests/cases/compiler/localAliasExportAssignment_1.ts ===
///<reference path='localAliasExportAssignment_0.ts'/>
import connect = require('localAliasExportAssignment_0');
>connect : () => any, Symbol(connect,Decl(localAliasExportAssignment_1.ts,0,0))
connect();
>connect() : any
>connect : () => any, Symbol(connect,Decl(localAliasExportAssignment_1.ts,0,0))
=== tests/cases/compiler/localAliasExportAssignment_0.ts ===
var server: {
>server : () => any, Symbol(server,Decl(localAliasExportAssignment_0.ts,0,3))
(): any;
};
export = server;
>server : () => any, Symbol(server,Decl(localAliasExportAssignment_0.ts,0,3))