@fires

Syntax

@fires <event_name>

Overview

This tag declares an event that may be fired by a method or function. The corresponding event should be documented using @event.

Example(s)

class Rocket {
  /**
   * @fires will_launch
   * @fires did_launch
   */
  launch() {
  }
}
Powered by webdoc!