/** * Created by murat on 8/23/2016. */ import { ReplaySubject } from 'rxjs'; import { HttpClient } from '@angular/common/http'; export declare class AddressService { private httpClient; private dataObs$; private hasBeenRequested; constructor(httpClient: HttpClient); getCities(forceRefresh?: boolean): ReplaySubject<{}>; getTowns(cityLocId: any): import("rxjs/internal/Observable").Observable; getDistricts(cityLocId: any, townLocId: any): import("rxjs/internal/Observable").Observable; getQuarters(cityLocId: any, townLocId: any, districtLocId: any): import("rxjs/internal/Observable").Observable; }