(client: WshClient, opts?: RpcOpts)
| 920 | |
| 921 | // command "streamtest" [responsestream] |
| 922 | StreamTestCommand(client: WshClient, opts?: RpcOpts): AsyncGenerator<number, void, boolean> { |
| 923 | if (this.mockClient) return this.mockClient.mockWshRpcStream(client, "streamtest", null, opts); |
| 924 | return client.wshRpcStream("streamtest", null, opts); |
| 925 | } |
| 926 | |
| 927 | // command "termgetscrollbacklines" [call] |
| 928 | TermGetScrollbackLinesCommand(client: WshClient, data: CommandTermGetScrollbackLinesData, opts?: RpcOpts): Promise<CommandTermGetScrollbackLinesRtnData> { |
nothing calls this directly
no test coverage detected