* Targets a room when emitting. * * @param room * @return BroadcastOperator * @public
(
room: string | string[],
)
| 47 | * @public |
| 48 | */ |
| 49 | public to( |
| 50 | room: string | string[], |
| 51 | ): BroadcastOperator<EmitEvents, ServerSideEvents> { |
| 52 | return this.newBroadcastOperator().to(room); |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Targets a room when emitting. |
nothing calls this directly
no test coverage detected