UNPKG

493 BTypeScriptView Raw
1import { Http } from '@angular/http';
2import { Observable } from 'rxjs/Observable';
3import 'rxjs/add/operator/mergeMap';
4import { ReadOnlySingleServiceBase } from './ReadOnlySingleService';
5export declare abstract class ReadOnlyCorsSingleServiceBase<TOut> extends ReadOnlySingleServiceBase<TOut> {
6 constructor(http: Http, baseUrl: string);
7 getItem(): Observable<TOut>;
8 private waitForConfiguration<T>(action);
9 protected abstract getServerUrl(): Observable<string>;
10}