(path: string, opts: RequestOpts = {})
| 107 | return this.request<T>("POST", path, opts); |
| 108 | } |
| 109 | patch<T = unknown>(path: string, opts: RequestOpts = {}) { |
| 110 | return this.request<T>("PATCH", path, opts); |
| 111 | } |
| 112 | put<T = unknown>(path: string, opts: RequestOpts = {}) { |
| 113 | return this.request<T>("PUT", path, opts); |
| 114 | } |
no test coverage detected