| 223 | } |
| 224 | |
| 225 | export interface HttpLibrary { |
| 226 | send(request: RequestContext): Observable<ResponseContext>; |
| 227 | } |
| 228 | |
| 229 | export interface PromiseHttpLibrary { |
| 230 | send(request: RequestContext): Promise<ResponseContext>; |
no outgoing calls
no test coverage detected