( input: RemoteWorkspaceConnectionInput )
| 23 | } |
| 24 | |
| 25 | export async function createRemoteWorkspaceConnection( |
| 26 | input: RemoteWorkspaceConnectionInput |
| 27 | ): Promise<RemoteWorkspaceConnection> { |
| 28 | return getShellTransport().call("create_remote_workspace_connection", { |
| 29 | input, |
| 30 | }) |
| 31 | } |
| 32 | |
| 33 | export async function updateRemoteWorkspaceConnection( |
| 34 | id: number, |
no test coverage detected