UNPKG

ontimize-web-ngx

Version:
15 lines (14 loc) 383 B
import { HttpHeaders, HttpParams } from '@angular/common/http'; export type HttpRequestOptions = { body?: any; headers?: HttpHeaders | { [header: string]: string | string[]; }; observe?: any; params?: HttpParams | { [param: string]: string | string[]; }; responseType?: any; reportProgress?: boolean; withCredentials?: boolean; };