How to document a double array of strings in JSDoc?

I can not find an example for this. But I have a string double array (table cell data) and I want to document it in my JSDoc.

The compiler does not seem to like it:

/** * @param {cells: [[String]]} tableData */ 

And there is nothing particularly pleasant in saying this:

 /** * @param {cells: String[][]} tableData */ 
+7
source share
1 answer
+4
source

All Articles