subscriptions
Version:
SLB
14 lines (13 loc) • 540 B
TypeScript
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/do';
import 'rxjs/add/operator/catch';
import 'rxjs/add/operator/map';
import 'rxjs/add/observable/throw';
import { Subscription } from './store/subscriptions.model';
import { HttpInterceptorService } from '@covalent/http';
export declare class SubscriptionsService {
private httpInterceptorService;
constructor(httpInterceptorService: HttpInterceptorService);
getSubscriptions(): Observable<Subscription[]>;
private handleError(error);
}