class A { static prop = 1; } class B extends A { static prop = 2; static propA = super.prop; static getPropA = () => super.prop; }