httpClient.d.ts 239 B

1234567
  1. import { RequestPolicy } from "./policies/requestPolicy";
  2. /**
  3. * An interface that can send HttpRequests and receive promised HttpResponses.
  4. */
  5. export interface HttpClient extends RequestPolicy {
  6. }
  7. //# sourceMappingURL=httpClient.d.ts.map