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

11 lines
464 B
Plaintext

tests/cases/compiler/incompatibleExports2.ts(4,5): error TS2309: An export assignment cannot be used in a module with other exported elements.
==== tests/cases/compiler/incompatibleExports2.ts (1 errors) ====
declare module "foo" {
export interface x { a: string }
interface y { a: Date }
export = y;
~~~~~~~~~~~
!!! error TS2309: An export assignment cannot be used in a module with other exported elements.
}