//// [subtypingWithStringIndexer.ts] // Derived type indexer must be subtype of base type indexer interface Base { foo: string; } interface Derived extends Base { bar: string; } interface Derived2 extends Derived { baz: string; } class A { [x: string]: Base; } class B extends A { [x: string]: Derived; // ok } class B2 extends A { [x: string]: Derived2; // ok } module Generics { class A { [x: string]: T; } class B extends A { [x: string]: Derived; // ok } class B2 extends A { [x: string]: Derived2; // ok } class B3 extends A { [x: string]: Derived; // error } class B4 extends A { [x: string]: Derived2; // error } } //// [subtypingWithStringIndexer.js] // Derived type indexer must be subtype of base type indexer var __extends = (this && this.__extends) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; function __() { this.constructor = d; } __.prototype = b.prototype; d.prototype = new __(); }; var A = (function () { function A() { } return A; })(); var B = (function (_super) { __extends(B, _super); function B() { _super.apply(this, arguments); } return B; })(A); var B2 = (function (_super) { __extends(B2, _super); function B2() { _super.apply(this, arguments); } return B2; })(A); var Generics; (function (Generics) { var A = (function () { function A() { } return A; })(); var B = (function (_super) { __extends(B, _super); function B() { _super.apply(this, arguments); } return B; })(A); var B2 = (function (_super) { __extends(B2, _super); function B2() { _super.apply(this, arguments); } return B2; })(A); var B3 = (function (_super) { __extends(B3, _super); function B3() { _super.apply(this, arguments); } return B3; })(A); var B4 = (function (_super) { __extends(B4, _super); function B4() { _super.apply(this, arguments); } return B4; })(A); })(Generics || (Generics = {}));