UNPKG

564 BTypeScriptView Raw
1import { ErrorHandler } from '@angular/core';
2import { Subject } from 'rxjs';
3import { EffectsErrorHandler } from './effects_error_handler';
4import * as i0 from "@angular/core";
5export declare class EffectSources extends Subject<any> {
6 private errorHandler;
7 private effectsErrorHandler;
8 constructor(errorHandler: ErrorHandler, effectsErrorHandler: EffectsErrorHandler);
9 addEffects(effectSourceInstance: any): void;
10 static ɵfac: i0.ɵɵFactoryDeclaration<EffectSources, never>;
11 static ɵprov: i0.ɵɵInjectableDeclaration<EffectSources>;
12}