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.
A couple of useful tricks using @template.
/** @constructor */ function Foo() {}
/**
/** @constructor @extends {Foo} */ function Bar() {} Bar.prototype = new Foo();
var x = new Bar().method(); // x is of type "Bar"