aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js
index 116b7d8..d9b36f8 100644
--- a/src/index.js
+++ b/src/index.js
@@ -49,6 +49,8 @@ export default function mitt(all: EventHandlerMap) {
* Invoke all handlers for the given type.
* If present, `"*"` handlers are invoked after type-matched handlers.
*
+ * Note: Manually firing "*" handlers is not supported.
+ *
* @param {String} type The event type to invoke
* @param {Any} [evt] Any value (object is recommended and powerful), passed to each handler
* @memberOf mitt