TypeScript/tests/baselines/reference/multipleExportAssignmentsInAmbientDeclaration.errors.txt
2014-07-12 17:30:19 -07:00

11 lines
373 B
Plaintext

==== tests/cases/compiler/multipleExportAssignmentsInAmbientDeclaration.ts (2 errors) ====
declare module "m1" {
var a: number
var b: number;
export = a;
~~~~~~~~~~~
!!! A module cannot have more than one export assignment.
export = b;
~~~~~~~~~~~
!!! A module cannot have more than one export assignment.
}