TypeScript/tests/baselines/reference/localAliasExportAssignment.types

22 lines
666 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/localAliasExportAssignment_1.ts ===
///<reference path='localAliasExportAssignment_0.ts'/>
import connect = require('localAliasExportAssignment_0');
2015-04-13 23:01:57 +02:00
>connect : () => any, Symbol(connect, Decl(localAliasExportAssignment_1.ts, 0, 0))
2014-08-15 23:33:16 +02:00
connect();
>connect() : any
2015-04-13 23:01:57 +02:00
>connect : () => any, Symbol(connect, Decl(localAliasExportAssignment_1.ts, 0, 0))
2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/localAliasExportAssignment_0.ts ===
var server: {
2015-04-13 23:01:57 +02:00
>server : () => any, Symbol(server, Decl(localAliasExportAssignment_0.ts, 0, 3))
2014-08-15 23:33:16 +02:00
(): any;
};
export = server;
2015-04-13 23:01:57 +02:00
>server : () => any, Symbol(server, Decl(localAliasExportAssignment_0.ts, 0, 3))
2014-08-15 23:33:16 +02:00