hosseinmd/prettier-plugin-jsdoc

TSDoc: Support `@typeParam` tags

Closed this issue · 2 comments

The @typeParam tag is the TSDoc equivalent of the JSDoc @template tag.

They are basically equivalent but specific to TSDoc and JSDoc respectively. This plugin should not treat them as synonyms. @typeParam and @template should be treated the same in all regards (e.g. tag order, grouping, and formatting).

I fixed that with you suggest, in tsdoc example @typeparam is like @param, but type of that is generic. Is it right?

LGTM; Thank you!