问题
I have a function with an array of objects as parameter and would like to describe the parameter (including the properties of the objects in the array) using JSDOC like in this example:
/**
* @param {Array.<Object>} filter - array of filter objects
* @param ...
*/
function doSomething(filter) {
}
where filter is something like this:
filter = [
{id: 'session', value: 1},
{id: 'name', value: 'john'}
]
How would I document the properties id
and value
in jsdoc3 ?
回答1:
like this:
/**
* @param {Object[]} filter - a list of literal filter objects
* @param {string} filter[].id - id to filter against...
* @param {string|number} filter[].value - value to filter for...
*/
function doSomething(filter) {
// do stuff
}
taken from http://usejsdoc.org/tags-param.html
来源:https://stackoverflow.com/questions/32295263/how-to-document-an-array-of-objects-in-jsdoc