//// [twoInterfacesDifferentRootModule.ts] // two interfaces with different root modules should not merge module M { export interface A { foo: string; } export interface B { foo: T; } } module M2 { export interface A { bar: number; } var a: A; var r1 = a.foo; // error var r2 = a.bar; export interface B { bar: T; } var b: B; var r3 = b.foo; // error var r4 = b.bar; } //// [twoInterfacesDifferentRootModule.js] var M2; (function (M2) { var a; var r1 = a.foo; // error var r2 = a.bar; var b; var r3 = b.foo; // error var r4 = b.bar; })(M2 || (M2 = {}));