cem-plugin-jsdoc-function
v0.0.5
Published
@function JSDoc tag for variables
Downloads
591
Maintainers
Readme
cem-plugin-jsdoc-function
Allows JSDoc @function
tag to override variable declarations
Example
custom-elements-manifest.config.js
import { jsdocFunctionPlugin } from 'cem-plugin-jsdoc-function';
export default {
plugins: [
jsdocFunctionPlugin(),
]
}
jsdoc-function.ts
/**
* @function
* @template T
* @param {T} x
* @return T
*/
export const identity = x => x;
Output
{
"schemaVersion": "1.0.0",
"readme": "",
"modules": [
{
"kind": "javascript-module",
"path": "jsdoc-function.js",
"declarations": [
{
"kind": "function",
"name": "identity",
"parameters": [
{
"name": "x",
"type": {
"text": "T"
}
}
],
"return": {
"type": {
"text": ""
}
}
}
],
"exports": [
{
"kind": "js",
"name": "identity",
"declaration": {
"name": "identity",
"module": "jsdoc-function.js"
}
}
]
}
]
}