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

16 lines
544 B
Plaintext

tests/cases/conformance/externalModules/exportAssignmentAndDeclaration.ts(10,1): error TS2309: An export assignment cannot be used in a module with other exported elements.
==== tests/cases/conformance/externalModules/exportAssignmentAndDeclaration.ts (1 errors) ====
export enum E1 {
A,B,C
}
class C1 {
}
// Invalid, as there is already an exported member.
export = C1;
~~~~~~~~~~~~
!!! error TS2309: An export assignment cannot be used in a module with other exported elements.