(path: string, opts?: PromiseOrValue<RequestOptions>)
| 711 | ): Promise<void> {} |
| 712 | |
| 713 | get<Rsp>(path: string, opts?: PromiseOrValue<RequestOptions>): APIPromise<Rsp> { |
| 714 | return this.methodRequest('get', path, opts); |
| 715 | } |
| 716 | |
| 717 | post<Rsp>(path: string, opts?: PromiseOrValue<RequestOptions>): APIPromise<Rsp> { |
| 718 | return this.methodRequest('post', path, opts); |