(path: string, opts?: RequestOptions)
| 240 | } |
| 241 | |
| 242 | async delete(path: string, opts?: RequestOptions): Promise<void> { |
| 243 | const res = await this.request(path, { |
| 244 | method: "DELETE", |
| 245 | signal: opts?.signal, |
| 246 | }); |
| 247 | if (!res.ok) throw await toApiError(res); |
| 248 | } |
| 249 | |
| 250 | /** |
| 251 | * POST that returns the raw Response (for streaming). Timeout is disabled |
nothing calls this directly
no test coverage detected