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

11 lines
373 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== 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.
}