UNPKG

mind-map

Version:
13 lines (12 loc) 325 B
export interface IObserver { closed?: boolean; next: (value?: any) => void; error: (err: any) => void; complete: () => void; } export declare class Observable { subscriber: any; constructor(subscribe: (ob: IObserver) => void); pipe(...operations: any[]): any; subscribe(observer: any): any; }