UNPKG

547 BTypeScriptView Raw
1import { OnDestroy } from '@angular/core';
2import { Store } from '@ngrx/store';
3import { EffectSources } from './effect_sources';
4import * as i0 from "@angular/core";
5export declare class EffectsRunner implements OnDestroy {
6 private effectSources;
7 private store;
8 private effectsSubscription;
9 constructor(effectSources: EffectSources, store: Store<any>);
10 start(): void;
11 ngOnDestroy(): void;
12 static ɵfac: i0.ɵɵFactoryDeclaration<EffectsRunner, never>;
13 static ɵprov: i0.ɵɵInjectableDeclaration<EffectsRunner>;
14}