【JsDoc】JsDoc用法 | 巧妙用法

type

  • type {other}
    • other 接收表达式或字符

1、数组代码提示

1、效果图

【JsDoc】JsDoc用法 | 巧妙用法_第1张图片

1、码

/**
 * @type {Array.<'play'|'paush'|'next'>} 
 */
let music = []

2、字符串提示

2、效果图

【JsDoc】JsDoc用法 | 巧妙用法_第2张图片

2、码

/**
 * @type {'a'|'b'|'c'}
 */
let str = ''

你可能感兴趣的:(javascript,jsdoc)