(name: string, icon: string, color: string, applyDefaults: boolean)
| 175 | |
| 176 | // @returns workspaceId |
| 177 | CreateWorkspace(name: string, icon: string, color: string, applyDefaults: boolean): Promise<string> { |
| 178 | return callBackendService(this?.waveEnv, "workspace", "CreateWorkspace", Array.from(arguments)) |
| 179 | } |
| 180 | |
| 181 | // @returns object updates |
| 182 | DeleteWorkspace(workspaceId: string): Promise<string> { |
no test coverage detected