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

9 lines
399 B
Plaintext
Raw Normal View History

tests/cases/compiler/exportAssignmentWithExports.ts(3,1): error TS2309: An export assignment cannot be used in a module with other exported elements.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/exportAssignmentWithExports.ts (1 errors) ====
export class C { }
class D { }
export = D;
~~~~~~~~~~~
!!! error TS2309: An export assignment cannot be used in a module with other exported elements.