ontimize-web-ngx
Version:
Ontimize Web framework using Angular 15
15 lines (14 loc) • 383 B
TypeScript
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;
};