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
Currently when using a docblock link for params, it will show all params in a list, e.g.
/** * * @param arg1 first arg * @param opts.opt1 first option * @param opts.opt2 second option */ function foo(arg1, { opt1, opt2 }) {}
[params](docblock://index.ts?token=foo)
This feature request is for the ability to link directly to a specific param, and only provide the comment for that param. e.g. (pseudo-code)
[params](docblock://index.ts?token=foo?param=opts.opt1)
first arg
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Background
Currently when using a docblock link for params, it will show all params in a list, e.g.
Input docblock
docblock link
Output
Request
This feature request is for the ability to link directly to a specific param, and only provide the comment for that param.
e.g. (pseudo-code)
docblock link
Desired output
first arg
The text was updated successfully, but these errors were encountered: