Pattern: Missing property description
Issue: -
Each @property tag should include a description explaining the property's purpose. Descriptions help other developers understand how to use the property correctly.
Example of incorrect code:
/**
* @typedef {Object} UserConfig
* @property {string} username
* @property {number} age
*/
Example of correct code:
/**
* @typedef {Object} UserConfig
* @property {string} username The user's login name
* @property {number} age The user's age in years
*/