import { Http } from '@angular/http'; import { Observable } from 'rxjs/Observable'; import 'rxjs/add/operator/map'; import { HttpServiceBase } from './HttpService'; export interface IReadOnlySingleService { getItem(): Observable; } export declare class ReadOnlySingleServiceBase extends HttpServiceBase implements IReadOnlySingleService { constructor(http: Http, baseUrl: string); getItem(): Observable; protected getItemInternal(hostUrl: string): Observable; protected mapItem(data: any): TOut; }