@ngrx/effects
Version:
Side effect model for @ngrx/store
6 lines (5 loc) • 371 B
TypeScript
import { Observable } from 'rxjs';
import { EffectNotification } from './effect_notification';
import { EffectsErrorHandler } from './effects_error_handler';
import { ErrorHandler } from '@angular/core';
export declare function mergeEffects(sourceInstance: any, globalErrorHandler: ErrorHandler, effectsErrorHandler: EffectsErrorHandler): Observable<EffectNotification>;