| 17 | import { RealtimeContext } from './context'; |
| 18 | |
| 19 | export interface RealtimeCommand { |
| 20 | type: RealtimeCommandType; |
| 21 | args: any; |
| 22 | } |
| 23 | |
| 24 | export const RealtimeClient = once( |
| 25 | () => |
nothing calls this directly
no outgoing calls
no test coverage detected