UNPKG

474 BTypeScriptView Raw
1import { Observable } from 'rxjs/Observable';
2import { WebSocketMessageServiceBase } from './WebSocketMessageService';
3import { IServerUrlsRepository } from './configuration/ServerUrlsRepository';
4export declare abstract class UpdateServiceBase<T> extends WebSocketMessageServiceBase<T> {
5 private readonly _serverUrlsRepository;
6 constructor(groupName: string, serverUrlsRepository: IServerUrlsRepository);
7 protected getServerUrl(): Observable<string>;
8}