Reputation: 171
I've got a function which takes an array of objects.
Looks like this.
myAwesomeFunction([
{
name: 'someName',
next: false,
test: 'test'
},
{
name: 'nameTwo',
next: true
}
]);
So far my JSDoc looks like this
/**
* My description
* @param {Array.<Object>}
*/
But how can I describe the object properties, types and descriptions and if they are optional of the object?
Thank you.
Upvotes: 16
Views: 11834
Reputation: 30987
/**
* @typedef AwesomeObject
* @type {Object}
* @property {string} name
* @property {boolean} next
* @property {string} test
*/
/**
* @param {Array.<AwesomeObject>} awesomeObjects Awesome objects.
*/
myAwesomeFunction(awesomeObjects) { ... }
Upvotes: 16
Reputation: 2646
/**
* Assign the project to a list of employees.
* @param {Object[]} employees - The employees who are responsible for the project.
* @param {string} employees[].name - The name of an employee.
* @param {string} employees[].department - The employee's department.
*/
Project.prototype.assign = function(employees) {
// ...
};
/**
Upvotes: 42