(workspaceId: string, tabId: string, fromElectron: boolean)
| 165 | |
| 166 | // @returns CloseTabRtn (and object updates) |
| 167 | CloseTab(workspaceId: string, tabId: string, fromElectron: boolean): Promise<CloseTabRtnType> { |
| 168 | return callBackendService(this?.waveEnv, "workspace", "CloseTab", Array.from(arguments)) |
| 169 | } |
| 170 | |
| 171 | // @returns tabId (and object updates) |
| 172 | CreateTab(workspaceId: string, tabName: string, activateTab: boolean): Promise<string> { |
no test coverage detected