(path: string, opts?: PromiseOrValue<RequestOptions>)
| 719 | } |
| 720 | |
| 721 | patch<Rsp>(path: string, opts?: PromiseOrValue<RequestOptions>): APIPromise<Rsp> { |
| 722 | return this.methodRequest('patch', path, opts); |
| 723 | } |
| 724 | |
| 725 | put<Rsp>(path: string, opts?: PromiseOrValue<RequestOptions>): APIPromise<Rsp> { |
| 726 | return this.methodRequest('put', path, opts); |
no test coverage detected