/** * Construction interface for `HttpRequest`s. * * All values are optional and will override default values if provided. */ export interface HttpRequestInit { headers?: any; reportProgress?: boolean; params?: any; responseType?: 'arraybuffer' | 'blob' | 'json' | 'text'; withCredentials?: boolean; }