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.