()
| 256 | } |
| 257 | |
| 258 | function logoutServerSession(): Promise<ServerSessionStatus> { |
| 259 | return jsonRequest<ServerSessionStatus>('/session/logout', { |
| 260 | method: 'POST' |
| 261 | }) |
| 262 | } |
| 263 | |
| 264 | function getRemoteWorkspaceInfo(): Promise<RemoteWorkspaceInfo | null> { |
| 265 | return Promise.resolve(null) |
nothing calls this directly
no test coverage detected