Pattern: Unnamed property
Issue: -
Each @property tag must include the name of the property being documented. A type alone is not sufficient for proper documentation.
Example of incorrect code:
/**
* @typedef {Object} UserConfig
* @property {string}
* @property {number}
*/
Example of correct code:
/**
* @typedef {Object} UserConfig
* @property {string} username
* @property {number} age
*/