Expected:
Intellisense from this
// @filename: lib.d.ts
onclick: (this: this, ev: MouseEvent) => any;
// @filename: test.ts
document.documentElement.onclick = function () {
this./**/
}
Actual:
No intellisense from this:
onclick: (ev: MouseEvent) => any;