UNPKG

ngx-http-client-service

Version:

<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --> [![All Contributors](https://img.shields.io/badge/all_contributors-1-orange.svg?style=flat-square)](#contributors-) <!-- ALL-CONTRIBUTORS-BADGE:END -->

26 lines (25 loc) 731 B
import { HttpParams, HttpHeaders } from '@angular/common/http'; export declare class NgxHttpParams { [param: string]: string | number | boolean | ReadonlyArray<string | number | boolean>; } export declare class NgxHttpHeaders { [header: string]: string | string[]; } export declare class HttpOptions { params?: HttpParams; headers?: HttpHeaders; context?: any; observe?: any; reportProgress?: boolean; responseType?: any; withCredentials?: boolean; } export declare class NgxHttpOptions { param?: NgxHttpParams; header?: NgxHttpHeaders; context?: any; observe?: any; reportProgress?: boolean; responseType?: any; withCredentials?: boolean; }