import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { Json } from '../../classes/Json/Json'; export declare class HttpService { private http; private httpOptions; base: string; constructor(http: HttpClient); setBaseUrl(url: string): string; makeUrl(url: string): string; baseUrl(): string; get(url: string): Observable; post(url: string, data: any): Observable; put(url: string, data: any): Observable; delete(url: string): Observable; jsonTo(type: string, url: string, data?: any): Observable; }