文字列の配列の配列があり、それを JSDoc で文書化する方法がわかりません。
/**
@class
*/
function PostbackList() {
/**
@type {int}
@default
*/
this.TypeID = 0;
/**
@type {PostbackList.Field[]}
*/
this.Fields = new Array();
/**
!! Issue here !!
@type {string[][]}
*/
this.Values = null;
}
エラーが発生します。
無効な型式 "string[][]": "!"、"?" が必要です または「|」しかし、「[」が見つかりました。
?
そして、それがnullになる可能性があることを示すために型の前に置くべきかどうかわかりません。