(path: string, opts: RequestOpts = {})
| 104 | return this.request<T>("GET", path, opts); |
| 105 | } |
| 106 | post<T = unknown>(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 | } |