In the documentation for JSDoc on http://usejsdoc.org/ there is an example given for an array with members of type MyClass
. There are two possibilities. One looks like this:
@param{MyClass[]}
The other one like this:
@param{Array.<MyClass>}
Be aware of the .
between Array
and <
.