ngx-http-client-service
Version:
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --> [](#contributors-) <!-- ALL-CONTRIBUTORS-BADGE:END -->
26 lines (25 loc) • 731 B
TypeScript
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;
}