TypeScript/tests/baselines/reference/es5ExportEquals.types
Wesley Wigham 3fc727b256
Use import types to refer to declarations in declaration emit (#24071)
* Stand up a simple implementation using import types for exports of modules which are otherwise inaccessible

* Ensure references exist to link to modules containing utilized ambient modules

* Accept baselines with new import type usage

* Fix lint
2018-05-17 13:08:22 -07:00

8 lines
170 B
Plaintext

=== tests/cases/compiler/es5ExportEquals.ts ===
export function f() { }
>f : typeof import("tests/cases/compiler/es5ExportEquals").f
export = f;
>f : () => void