TypeScript/tests/baselines/reference/exportAssignmentWithExports.errors.txt
2014-09-12 13:35:07 -07:00

9 lines
399 B
Plaintext

tests/cases/compiler/exportAssignmentWithExports.ts(3,1): error TS2309: An export assignment cannot be used in a module with other exported elements.
==== 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.