In JSDoc, the best documentation I can find shows to use the following if you have an array of a specific type (such as an array of strings) as:
/**
* @param {Array.<string>} myStrings All my awesome strings
*/
function blah(myStrings){
//stuff here...
}
How would you replace the below question marks specify an array of objects?
/**
* @param {???????} myObjects All of my equally awesome objects
*/
function blah(myObjects){
//stuff here...
}