(url: string, data?: object, options?: RequestOptions)
| 211 | } |
| 212 | |
| 213 | async put(url: string, data?: object, options?: RequestOptions): Promise<JsonValue> { |
| 214 | return this.requestWithErrorToast( |
| 215 | { |
| 216 | method: "PUT", |
| 217 | url, |
| 218 | data, |
| 219 | }, |
| 220 | options, |
| 221 | ); |
| 222 | } |
| 223 | |
| 224 | async patch(url: string, data?: object, options?: RequestOptions): Promise<JsonValue> { |
| 225 | return this.requestWithErrorToast( |
no test coverage detected