(path: string, opts?: PromiseOrValue<RequestOptions>)
| 723 | } |
| 724 | |
| 725 | put<Rsp>(path: string, opts?: PromiseOrValue<RequestOptions>): APIPromise<Rsp> { |
| 726 | return this.methodRequest('put', path, opts); |
| 727 | } |
| 728 | |
| 729 | delete<Rsp>(path: string, opts?: PromiseOrValue<RequestOptions>): APIPromise<Rsp> { |
| 730 | return this.methodRequest('delete', path, opts); |
nothing calls this directly
no test coverage detected