TypeScript/tests/baselines/reference/importDeclWithExportModifierAndExportAssignment.errors.txt

11 lines
366 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/importDeclWithExportModifierAndExportAssignment.ts (2 errors) ====
module x {
interface c {
}
}
export import a = x.c;
~~~~~~~~~~~~~~~~~~~~~~
!!! Module 'x' has no exported member 'c'.
export = x;
~~~~~~~~~~~
!!! An export assignment cannot be used in a module with other exported elements.