* Emits to all clients. * * @return Always true * @public
(
ev: Ev,
...args: EventParams<EmitEvents, Ev>
)
| 33 | * @public |
| 34 | */ |
| 35 | public emit<Ev extends EventNames<EmitEvents>>( |
| 36 | ev: Ev, |
| 37 | ...args: EventParams<EmitEvents, Ev> |
| 38 | ): true { |
| 39 | return this.newBroadcastOperator().emit(ev, ...args); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Targets a room when emitting. |
nothing calls this directly
no test coverage detected