字符串数组的类型表达式可以写为:
/**
* @type {Array<string>}
*/
const arr = ['foo', 'bar', 'baz'];
字符串数组的类型表达式可以写为:
/**
* @type {Array<Array<string>>}
*/
const arr = [
['foo'],
['foo', 'bar'],
['foo', 'bar', 'baz']
];
我找不到一种方法来注释正好两个字符串的数组:
const arr = [
['foo', 'aaa'],
['bar', 'bbb'],
['baz', 'ccc']
];
问题::使用JSDoc和Google Closure Compiler Type System,如何注释定长数组?