(winSize: WinSize, workspaceId: string)
| 137 | return callBackendService(this?.waveEnv, "window", "CloseWindow", Array.from(arguments)) |
| 138 | } |
| 139 | CreateWindow(winSize: WinSize, workspaceId: string): Promise<WaveWindow> { |
| 140 | return callBackendService(this?.waveEnv, "window", "CreateWindow", Array.from(arguments)) |
| 141 | } |
| 142 | GetWindow(windowId: string): Promise<WaveWindow> { |
| 143 | return callBackendService(this?.waveEnv, "window", "GetWindow", Array.from(arguments)) |
| 144 | } |
no test coverage detected