(client: WshClient, data: CommandBadgeWatchPidData, opts?: RpcOpts)
| 68 | |
| 69 | // command "badgewatchpid" [call] |
| 70 | BadgeWatchPidCommand(client: WshClient, data: CommandBadgeWatchPidData, opts?: RpcOpts): Promise<void> { |
| 71 | if (this.mockClient) return this.mockClient.mockWshRpcCall(client, "badgewatchpid", data, opts); |
| 72 | return client.wshRpcCall("badgewatchpid", data, opts); |
| 73 | } |
| 74 | |
| 75 | // command "blockinfo" [call] |
| 76 | BlockInfoCommand(client: WshClient, data: string, opts?: RpcOpts): Promise<BlockInfoData> { |
nothing calls this directly
no test coverage detected