callback.rows
is array of arbitrary length with a number of repeating fields.
How can I document each field (type, property, description) in JSDoc
?
Is there possible to apply this method?
Or may be this solution can be accepted:
/**
* Get list of all documents
* @param {Function} callback Standard callback function
* @param {Error} callback.err Error object if any
* @param {Array} callback.rows Rows list
* @param {String} callback.rows[0].field1 field1
*/
var myFunc = function (callback) {
// Function body
}
Try:
/**@param {string[]} callback.rows*/
Note that you can put any type there, not just string... Such as
/**@param {{field1: string}[]} callback.rows */