1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithPropertyThatIsPrivateInBaseType.ts(5,11): error TS2430: Interface 'Foo' incorrectly extends interface 'Base'.
Property 'x' is private in type 'Base' but not in type 'Foo'.
tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithPropertyThatIsPrivateInBaseType.ts(13,11): error TS2430: Interface 'Foo2<T>' incorrectly extends interface 'Base2<T>'.
Property 'x' is private in type 'Base2<T>' but not in type 'Foo2<T>'.
==== tests/cases/conformance/interfaces/interfaceDeclarations/interfaceWithPropertyThatIsPrivateInBaseType.ts (2 errors) ====
class Base {
private x: number;
}
interface Foo extends Base { // error
~~~
!!! error TS2430: Interface 'Foo' incorrectly extends interface 'Base'.
!!! error TS2430: Property 'x' is private in type 'Base' but not in type 'Foo'.
x: number;
}
class Base2<T> {
private x: T;
}
interface Foo2<T> extends Base2<T> { // error
~~~~
!!! error TS2430: Interface 'Foo2<T>' incorrectly extends interface 'Base2<T>'.
!!! error TS2430: Property 'x' is private in type 'Base2<T>' but not in type 'Foo2<T>'.
x: number;
}
|