(path: string, opts: RequestOpts = {})
| 113 | return this.request<T>("PUT", path, opts); |
| 114 | } |
| 115 | delete<T = unknown>(path: string, opts: RequestOpts = {}) { |
| 116 | return this.request<T>("DELETE", path, opts); |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | export const defaultClient = new ApiClient(); |
no test coverage detected