@emits
@fires <className>#[event:]<eventName>
The @fires tag indicates that a method can fire a specified type of event when it is called. Use the @event tag to document the event's content.
/** * Drink the milkshake. * * @fires Milkshake#drain */ Milkshake.prototype.drink = function() { // ... };
© 2011–2017 the contributors to the JSDoc 3 documentation project
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://usejsdoc.org/tags-fires.html