We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I annotate a variable with type Map<Foo, number>, I want to see:
Map<Foo, number>
Foo
At the moment, in browser I get only the string Map, without rest.
Map
Similarly, I'd like to have links in the type annotation (Foo, Foo) => Foo.
(Foo, Foo) => Foo
/** * Some class description * @class Foo */ class Foo { /** * Some method description * @method bar * @param {Map<Foo, boolean>} baz1 * Want see type `Map_Foo__boolean_` * @param {Map<Foo,boolean>} baz2 * Want see type `Map_Foo_boolean_` * @param {(Foo, Foo) => Foo} baz3 * Want see type `_Foo__Foo____Foo` * @return {Foo[]} * Array of `Foo`s */ bar(baz1, baz2, baz3) { } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I annotate a variable with type
Map<Foo, number>
, I want to see:Foo
be a link toFoo
type definition.At the moment, in browser I get only the string
Map
, without rest.Similarly, I'd like to have links in the type annotation
(Foo, Foo) => Foo
.The text was updated successfully, but these errors were encountered: