( id: number, input: RemoteWorkspaceConnectionInput )
| 31 | } |
| 32 | |
| 33 | export async function updateRemoteWorkspaceConnection( |
| 34 | id: number, |
| 35 | input: RemoteWorkspaceConnectionInput |
| 36 | ): Promise<RemoteWorkspaceConnection> { |
| 37 | return getShellTransport().call("update_remote_workspace_connection", { |
| 38 | id, |
| 39 | input, |
| 40 | }) |
| 41 | } |
| 42 | |
| 43 | export async function deleteRemoteWorkspaceConnection( |
| 44 | id: number |
no test coverage detected