| 11 | } |
| 12 | |
| 13 | export interface IHttpClient { |
| 14 | request(rurl: string, data: any, callback: (error: any, res?: any, body?: any) => any, exheaders?: IHeaders, exoptions?: IExOptions, caller?): req.AxiosPromise; |
| 15 | requestStream?(rurl: string, data: any, exheaders?: IHeaders, exoptions?: IExOptions, caller?): req.AxiosPromise<ReadStream>; |
| 16 | } |
| 17 | |
| 18 | /** @deprecated use SoapMethod */ |
| 19 | export type ISoapMethod = SoapMethod; |
no outgoing calls
no test coverage detected