(url: string, options?: RequestOptions)
| 233 | } |
| 234 | |
| 235 | async delete(url: string, options?: RequestOptions): Promise<JsonValue> { |
| 236 | return this.requestWithErrorToast( |
| 237 | { |
| 238 | method: "DELETE", |
| 239 | url, |
| 240 | }, |
| 241 | options, |
| 242 | ); |
| 243 | } |
| 244 | |
| 245 | async postStream( |
| 246 | url: string, |
no test coverage detected