import { HttpClient, HttpParams } from '@angular/common/http'; import { Observable } from 'rxjs'; import { AttachmentsService } from './attachments.service'; export declare class ApiService { private http; private attachmentsService; constructor(http: HttpClient, attachmentsService: AttachmentsService); fetch(api: string, params?: HttpParams): Observable; download(api: string, params?: HttpParams): Observable; put(api: string, body: any, params?: {}): Observable; post(api: string, body: any, fieldName?: any, params?: {}): Observable; delete(api: string, payload: any, join?: boolean): Observable; } //# sourceMappingURL=api.service.d.ts.map