declare class Base { check(prop: TProp): boolean; } class Test extends Base { m() { this.check(this); } }