(id: string)
| 97 | }, |
| 98 | |
| 99 | async remove(id: string): Promise<void> { |
| 100 | await fetchSyncPost(API + "/removeSession", {id}, APP_HEADER); |
| 101 | }, |
| 102 | |
| 103 | async rename(id: string, newTitle: string): Promise<void> { |
| 104 | const session = await this.load(id); |
nothing calls this directly
no test coverage detected