(workspaceId: string)
| 195 | |
| 196 | // @returns workspace |
| 197 | GetWorkspace(workspaceId: string): Promise<Workspace> { |
| 198 | return callBackendService(this?.waveEnv, "workspace", "GetWorkspace", Array.from(arguments)) |
| 199 | } |
| 200 | ListWorkspaces(): Promise<WorkspaceListEntry[]> { |
| 201 | return callBackendService(this?.waveEnv, "workspace", "ListWorkspaces", Array.from(arguments)) |
| 202 | } |
no test coverage detected