( ids: number[] )
| 47 | } |
| 48 | |
| 49 | export async function reorderRemoteWorkspaceConnections( |
| 50 | ids: number[] |
| 51 | ): Promise<void> { |
| 52 | return getShellTransport().call("reorder_remote_workspace_connections", { |
| 53 | ids, |
| 54 | }) |
| 55 | } |
| 56 | |
| 57 | export async function openRemoteWorkspace(id: number): Promise<void> { |
| 58 | return getShellTransport().call("open_remote_workspace", { id }) |
no test coverage detected