/**
* @para$
*/
function printValue(value, maximumFractionDigits) {
}
Today, we provide the expected @param JSDoc tag completion.
However, if we're going by the book with JSDoc, the name of the parameter is already known. Can we provide snippet completions that contain the name of the parameter?
Thoughts:
- This should work in both JS and TS.
- In TS it should have a placeholder by the comment
- In JS it should have a placeholder that starts on the type, followed by a placeholder at the comment
- I don't know (/remember) how this should work with destructuring.
Today, we provide the expected
@paramJSDoc tag completion.However, if we're going by the book with JSDoc, the name of the parameter is already known. Can we provide snippet completions that contain the name of the parameter?
Thoughts: