Skip to content

Commit

Permalink
etc
Browse files Browse the repository at this point in the history
  • Loading branch information
elringus committed Sep 16, 2023
1 parent 897b255 commit 7167552
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions JavaScript/src/event.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** Allows broadcasting events. */
export interface EventBroadcaster<T> {
/** Notifies attached handlers with specified payload argument.
* @param args The payload argument of the notification. */
/** Notifies attached handlers with specified payload.
* @param payload The payload argument of the notification. */
broadcast: (payload: T) => void;
}

Expand Down

0 comments on commit 7167552

Please sign in to comment.