定长数组的类型表达式是什么?

时间:2019-03-19 23:59:25

标签: javascript google-closure-compiler jsdoc3

字符串数组的类型表达式可以写为:

/**
 * @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,如何注释定长数组?

0 个答案:

没有答案