documentalist icon indicating copy to clipboard operation
documentalist copied to clipboard

@event tags are erased

Open moog16 opened this issue 6 years ago • 0 comments

Currently I'm using the compiler. I use the compiler to build JSON, which I then use to create markdown. According to https://jsdoc.app/tags-event.html, I should be able to use @event tags to document different events that are emitted.

Desired usage:

/**
 * @event Drawer:event Emits when the drawer has closed.
 * @type {object}
 * @event Drawer:opened Emits when the drawer has opened.
 * @type {object}
 */
export class Drawer {

Actual Result: Using this notation actually removes the Drawer entry from docs.json.

moog16 avatar Jul 09 '19 23:07 moog16