I know there is some others questions with that subject, but my issue is not the same as them : I checked my class and I already use it the same way as them. I extends a class A into a class B, and I can't access to A public properties in B. Here is my (simplified) code :
export class A {
propertyA: string;
constructor() {
this.propertyA = "some text";
}
}
import {A} from "./A";
export class B extends A {
constructor() {
super();
}
static method() {
console.log(this.propertyA);
}
}