(id: string)
| 173 | return response.json(); |
| 174 | }, |
| 175 | async leave(id: string) { |
| 176 | const response = await fetch(`${baseUrl}/v1/rooms/${id}/leave`, { |
| 177 | method: "POST", |
| 178 | headers: buildHeaders(), |
| 179 | }); |
| 180 | return response.json(); |
| 181 | }, |
| 182 | }, |
| 183 | }; |
| 184 |
nothing calls this directly
no test coverage detected