Tengo el módulo actual TextExtractor.js , que exporta una clase TextExtractor :
/** * @file Extract RegEx matches from texts. * @author Victorio Molina <victoriomolinabermejo@gmail.com> * @license MIT * @category Lib * @subcategory Text Extractor * @module TextExtractor */ /** * Class for converting any text into Regex matches * and React props. * * @class */ export default class TextExtractor { /** * @param {string} text - The text to manipulate. * @param {DetectionOption[]} [detectionOptions=[]] - Detection options. */ constructor(text, detectionOptions = []) { /** * Text that is being treated. * * @private * @type {string} */ this.#text = text; /** * @private * @type {DetectionOption[]} * @default [] */ this.#detectionOptions = detectionOptions; } ... }Por alguna razón, cuando genero automáticamente la documentación usando JSDoc, muestra lo siguiente:
CLASE
módulo:TextExtractor
módulo:TextExtractor(texto, opciones de detección opt)
Clase para convertir cualquier texto en coincidencias Regex y accesorios React.
CONSTRUCTOR
nuevo módulo: TextExtractor (texto, opciones de detección opt)
¿Qué etiqueta JSDoc debo usar para evitar mostrar el nombre de la clase como "módulo: TextExtractor"?
¿Es el comportamiento esperado?