In JSDoc, la migliore documentazione che posso trovare mostra di utilizzare quanto segue se si dispone di un array di un tipo specifico (come un array di stringhe) come:
/**
* @param {Array.<string>} myStrings All my awesome strings
*/
function blah(myStrings){
//stuff here...
}
Come sostituireste i seguenti punti interrogativi per specificare una matrice di oggetti?
/**
* @param {???????} myObjects All of my equally awesome objects
*/
function blah(myObjects){
//stuff here...
}