( id: string, settings: WorkspaceSettings, )
| 316 | } |
| 317 | |
| 318 | export async function updateWorkspaceSettings( |
| 319 | id: string, |
| 320 | settings: WorkspaceSettings, |
| 321 | ): Promise<WorkspaceInfo> { |
| 322 | return invoke<WorkspaceInfo>("update_workspace_settings", { id, settings }); |
| 323 | } |
| 324 | |
| 325 | export async function removeWorkspace(id: string): Promise<void> { |
| 326 | return invoke("remove_workspace", { id }); |
no outgoing calls
no test coverage detected