(client: WshClient, data: ActivityUpdate, opts?: RpcOpts)
| 20 | |
| 21 | // command "activity" [call] |
| 22 | ActivityCommand(client: WshClient, data: ActivityUpdate, opts?: RpcOpts): Promise<void> { |
| 23 | if (this.mockClient) return this.mockClient.mockWshRpcCall(client, "activity", data, opts); |
| 24 | return client.wshRpcCall("activity", data, opts); |
| 25 | } |
| 26 | |
| 27 | // command "aisendmessage" [call] |
| 28 | AiSendMessageCommand(client: WshClient, data: AiMessageData, opts?: RpcOpts): Promise<void> { |
nothing calls this directly
no test coverage detected