UNPKG

@cardboard-box/ngx-box

Version:

A collection of useful directives, components and services for angular

7 lines (6 loc) 262 B
import { Observable, Subscription } from "rxjs"; export declare class SubscriptionHandler { subscriptions: Subscription[]; subscribe<T>(obs: Observable<T>, handler: (item: T) => void, error?: (error: any) => void): this; unsubscribe(): void; }