I have an array that looks like this:
[{
"name": "c917379",
"email": "jim@bmw.de"
},
{
"name": "c917389",
"email": "jane@bmw.de"
}]
It is an array of arbitrary length with a number of repeating fields (I've reduced this to two fields for clarity). This gets passed into a JavaScript method.
/**
* @param {?} data
*/
update: function(data) {...}
I was wondering how you would document this in JSDoc. Ie. how would you document the type where the question mark is?