UNPKG

577 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 get isStarted(): boolean;
10 constructor(effectSources: EffectSources, store: Store<any>);
11 start(): void;
12 ngOnDestroy(): void;
13 static ɵfac: i0.ɵɵFactoryDeclaration<EffectsRunner, never>;
14 static ɵprov: i0.ɵɵInjectableDeclaration<EffectsRunner>;
15}