Skip to content
New issue

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

support destructuring parameter @param tag in tsdoc #80368

Closed
xiaoxiangmoe opened this issue Sep 5, 2019 · 2 comments
Closed

support destructuring parameter @param tag in tsdoc #80368

xiaoxiangmoe opened this issue Sep 5, 2019 · 2 comments
Assignees
Labels
typescript Typescript support issues upstream Issue identified as 'upstream' component related (exists outside of VS Code)

Comments

@xiaoxiangmoe
Copy link
Contributor

tsdoc rule:

microsoft/tsdoc#186

example:

/**
 *
 * @param bar - the bar parameter
 * @param a - the first parameter
 * @param b - the second parameter
 * @param c - the third parameter
 * @returns the return value
 */
function foo(bar: string, {
  a,
  b,
  c
}:{
  a: string,
  b: number,
  c: string
}) {

  return bar + a;
}

image
image

@vscodebot
Copy link

vscodebot bot commented Sep 5, 2019

(Experimental duplicate detection)
Thanks for submitting this issue. Please also check if it is already covered by an existing one, like:

@mjbvz
Copy link
Contributor

mjbvz commented Sep 9, 2019

This feature is powered by the TypeScript project. Please file an issue upstream

@mjbvz mjbvz closed this as completed Sep 9, 2019
@mjbvz mjbvz added typescript Typescript support issues upstream Issue identified as 'upstream' component related (exists outside of VS Code) labels Sep 9, 2019
@vscodebot vscodebot bot locked and limited conversation to collaborators Oct 24, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
typescript Typescript support issues upstream Issue identified as 'upstream' component related (exists outside of VS Code)
Projects
None yet
Development

No branches or pull requests

2 participants