How to specify an array of objects as a parameter or return value in JSDoc?
You should be more specific what you mean by JSDoc – this is a generic term covering pretty much all the JavaDoc-style documentation tools for JavaScript. The syntax you used for array of strings looks like the one supported by Google Closure Compiler. Using this, an array of Objects would be: /** * @param {Array.<Object>} … Read more