The @param
tag allow the documentation of properties, e.g.
/**
* @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.
*/
How would I document the properties of the @this tag?
/**
* @this {Object}
* @param {String} this.name The name of the user.
* @param {String} this.email The email of the user.
*/
I'm wondering if anyone working on the project knows. (The docs are still being created...)