We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RT.
比如:
function (a = 1)
对应出的参数注释:
@param {number} [a=1] a [a description]
function ({a, b = false})
对应的参数注释:
@param {[type]} a [a description] @param {boolean] b [b description]
或者:
@param {Object} param [param description] @param {[type]} param.a [a description] @param {boolean] param.b [b description]
上面只是简单举例,真实情况还要考虑混合使用的。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
RT.
比如:
参数默认值
对应出的参数注释:
参数解构:
对应的参数注释:
或者:
上面只是简单举例,真实情况还要考虑混合使用的。
The text was updated successfully, but these errors were encountered: