(req: Request)
| 52 | } |
| 53 | |
| 54 | public async get<TResponse>(req: Request) { |
| 55 | return await this.request<TResponse>("GET", req); |
| 56 | } |
| 57 | |
| 58 | public async post<TResponse>(req: Request) { |
| 59 | return await this.request<TResponse>("POST", req); |
no outgoing calls