(client: WshClient, command: string, data: any, opts?: RpcOpts)
| 8 | export interface MockRpcClient { |
| 9 | mockWshRpcCall(client: WshClient, command: string, data: any, opts?: RpcOpts): Promise<any>; |
| 10 | mockWshRpcStream(client: WshClient, command: string, data: any, opts?: RpcOpts): AsyncGenerator<any, void, boolean>; |
| 11 | } |
| 12 | |
| 13 | // WshServerCommandToDeclMap |
no outgoing calls
no test coverage detected