-
Notifications
You must be signed in to change notification settings - Fork 50
Open
Labels
Description
There's no mention of type in in the output for event (output in jsdoc2md/jsdoc-to-markdown#9 suggests there once was).
Source:
/**
* Instance of Test
*
* @constructor
*/
function Test () {
}
/**
* Object event
*
* @event Test#event1
* @type {object}
* @property {boolean} isPacked - Indicates whether the snowball is tightly packed.
*/
/**
* String event
*
* @event Test#event2
* @type {string}
*/
Output:
<a name="Test"></a>
## Test
**Kind**: global class
* [Test](#Test)
* [new Test()](#new_Test_new)
* ["event1"](#Test+event_event1)
* ["event2"](#Test+event_event2)
<a name="new_Test_new"></a>
### new Test()
Instance of Test
<a name="Test+event_event1"></a>
### "event1"
Object event
**Kind**: event emitted by <code>[Test](#Test)</code>
**Properties**
| Name | Type | Description |
| --- | --- | --- |
| isPacked | <code>boolean</code> | Indicates whether the snowball is tightly packed. |
<a name="Test+event_event2"></a>
### "event2"
String event
**Kind**: event emitted by <code>[Test](#Test)</code>