UNPKG

710 BTypeScriptView Raw
1import { Store, StoreRootModule, StoreFeatureModule } from '@ngrx/store';
2import { EffectsRunner } from './effects_runner';
3import { EffectSources } from './effect_sources';
4export declare const ROOT_EFFECTS_INIT = "@ngrx/effects/init";
5export declare const rootEffectsInit: import("@ngrx/store").ActionCreator<"@ngrx/effects/init", () => import("@ngrx/store/src/models").TypedAction<"@ngrx/effects/init">>;
6export declare class EffectsRootModule {
7 private sources;
8 constructor(sources: EffectSources, runner: EffectsRunner, store: Store<any>, rootEffects: any[], storeRootModule: StoreRootModule, storeFeatureModule: StoreFeatureModule, guard: any);
9 addEffects(effectSourceInstance: any): void;
10}