We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I don't quite understand why below code is typed as any(I'm using nightly with --noImplicitThis)?
any
--noImplicitThis
interface A { a: string; } declare function test(callback: (this: A) => void): void; test(function() { this.a;// typed as any? });