(message: string | Record<string, any>)
| 41 | onWebSocket(event: 'message', callback: (this: WebSocketInterface, ev: any) => any): RemoveEventHandler; |
| 42 | onWebSocket(event: WebSocketEvents, callback: WebSocketEventHandler): RemoveEventHandler; |
| 43 | sendMessage(message: string | Record<string, any>): void; |
| 44 | subscribe<Collection extends keyof Schema, const Options extends SubscribeOptions<Schema, Collection>>( |
| 45 | collection: Collection, |
| 46 | options?: Options, |
no outgoing calls
no test coverage detected