我有一个字符串数组,我不知道如何用 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[][]”:应为“!”、“?” 或“|” 但是找到了“[”。
而且我不知道我是否应该?
在类型前面放置以表明它可以为空。