jsdocs export const {箭头函数}

时间:2018-07-20 12:56:11

标签: jsdoc

我对jsdocs有点陌生,我正在尝试正确记录箭头功能。

一切都很好,直到我在行的开头添加“导出”为止,我看到了多个答案,建议在文档的顶部添加@module,在文档中添加@memeberof,但是这些选项不会似乎不适合我。

这是我的代码的示例:

/** @module SampleModule */

/**
 * Function description
 *
 * @param {string} _type - Component type.
 * @param {string} currentName - Current component's name.
 * @param {string} canonicalname - Current site.
 * @returns {undefined}
 * 
 * @example
 * 
 *  activateComponentWizard('t1', 'test 1', 'www.example.com')
 */

export const activateComponentWizard = async (_type, currentName, canonicalname) => { ... }

这是结果:

enter image description here

有什么想法我想念什么?

0 个答案:

没有答案