//// [mergedInterfacesWithMultipleBases.ts] // merged interfaces behave as if all extends clauses from each declaration are merged together // no errors expected class C { a: number; } class C2 { b: number; } interface A extends C { y: string; } interface A extends C2 { z: string; } class D implements A { a: number; b: number; y: string; z: string; } var a: A; var r = a.a; // generic interfaces in a module module M { class C { a: T; } class C2 { b: T; } interface A extends C { y: T; } interface A extends C2 { z: T; } class D implements A { a: boolean; b: string; y: boolean; z: boolean; } } //// [mergedInterfacesWithMultipleBases.js] // merged interfaces behave as if all extends clauses from each declaration are merged together // no errors expected var C = (function () { function C() { } return C; })(); var C2 = (function () { function C2() { } return C2; })(); var D = (function () { function D() { } return D; })(); var a; var r = a.a; // generic interfaces in a module var M; (function (M) { var C = (function () { function C() { } return C; })(); var C2 = (function () { function C2() { } return C2; })(); var D = (function () { function D() { } return D; })(); })(M || (M = {}));