command "testmultiarg", wshserver.TestMultiArgCommand
(w *wshutil.WshRpc, arg1 string, arg2 int, arg3 bool, opts *wshrpc.RpcOpts)
| 932 | |
| 933 | // command "testmultiarg", wshserver.TestMultiArgCommand |
| 934 | func TestMultiArgCommand(w *wshutil.WshRpc, arg1 string, arg2 int, arg3 bool, opts *wshrpc.RpcOpts) (string, error) { |
| 935 | resp, err := sendRpcRequestCallHelper[string](w, "testmultiarg", wshrpc.MultiArg{Args: []any{arg1, arg2, arg3}}, opts) |
| 936 | return resp, err |
| 937 | } |
| 938 | |
| 939 | // command "updatetabname", wshserver.UpdateTabNameCommand |
| 940 | func UpdateTabNameCommand(w *wshutil.WshRpc, arg1 string, arg2 string, opts *wshrpc.RpcOpts) error { |