@param
タグを使用すると、プロパティのドキュメント化が可能になります。
/**
* @param {Object} userInfo Information about the user.
* @param {String} userInfo.name The name of the user.
* @param {String} userInfo.email The email of the user.
*/
@thisタグのプロパティをどのように文書化しますか?
/**
* @this {Object}
* @param {String} this.name The name of the user.
* @param {String} this.email The email of the user.
*/
プロジェクトに取り組んでいる人が知っているかどうか疑問に思います。(ドキュメントはまだ作成中です...)