(client: WshClient, data: VDomFrontendUpdate, opts?: RpcOpts)
| 968 | |
| 969 | // command "vdomrender" [responsestream] |
| 970 | VDomRenderCommand(client: WshClient, data: VDomFrontendUpdate, opts?: RpcOpts): AsyncGenerator<VDomBackendUpdate, void, boolean> { |
| 971 | if (this.mockClient) return this.mockClient.mockWshRpcStream(client, "vdomrender", data, opts); |
| 972 | return client.wshRpcStream("vdomrender", data, opts); |
| 973 | } |
| 974 | |
| 975 | // command "vdomurlrequest" [responsestream] |
| 976 | VDomUrlRequestCommand(client: WshClient, data: VDomUrlRequestData, opts?: RpcOpts): AsyncGenerator<VDomUrlRequestResponse, void, boolean> { |
nothing calls this directly
no test coverage detected