UNPKG

1.05 kBTypeScriptView Raw
1import { Store, StoreRootModule, StoreFeatureModule } from '@ngrx/store';
2import { EffectsRunner } from './effects_runner';
3import { EffectSources } from './effect_sources';
4import * as i0 from "@angular/core";
5export declare const ROOT_EFFECTS_INIT = "@ngrx/effects/init";
6export declare const rootEffectsInit: import("@ngrx/store").ActionCreator<"@ngrx/effects/init", () => import("@ngrx/store/src/models").TypedAction<"@ngrx/effects/init">>;
7export declare class EffectsRootModule {
8 private sources;
9 constructor(sources: EffectSources, runner: EffectsRunner, store: Store<any>, rootEffects: any[], storeRootModule: StoreRootModule, storeFeatureModule: StoreFeatureModule, guard: any);
10 addEffects(effectSourceInstance: any): void;
11 static ɵfac: i0.ɵɵFactoryDeclaration<EffectsRootModule, [null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
12 static ɵmod: i0.ɵɵNgModuleDeclaration<EffectsRootModule, never, never, never>;
13 static ɵinj: i0.ɵɵInjectorDeclaration<EffectsRootModule>;
14}