TypeScript/tests/baselines/reference/multipleExportAssignmentsInAmbientDeclaration.errors.txt
2014-09-11 16:11:08 -07:00

11 lines
401 B
Plaintext

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