UNPKG

@js-sugar/angular

Version:

JS-Sugar core package (Angular)

12 lines (11 loc) 412 B
import { InjectionToken } from '@angular/core'; export declare const HttpServiceBaseUrl: InjectionToken<unknown>; export interface HttpOptions { query?: any; pathType?: 'relative' | 'absolute'; responseType?: 'json' | 'blob'; contentType?: 'json' | 'multipart/form-data'; reportProgress?: boolean; observe?: "response" | "body" | "events"; displayServerErrors?: boolean; }