Skip to content

Commit

Permalink
feat(effects): add user provided effects to EffectsModule
Browse files Browse the repository at this point in the history
  • Loading branch information
Leon Marzahn committed Jan 17, 2020
1 parent 2c5f7c1 commit f79529a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/effects/src/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const _ROOT_EFFECTS_GUARD = new InjectionToken<void>(
export const IMMEDIATE_EFFECTS = new InjectionToken<any[]>(
'ngrx/effects: Immediate Effects'
);
export const USER_PROVIDED_ROOT_EFFECTS = new InjectionToken<Type<any>>(
export const USER_PROVIDED_ROOT_EFFECTS = new InjectionToken<Type<any>[][]>(
'ngrx/effects: User Provided Root Effects'
);
export const _ROOT_EFFECTS = new InjectionToken<Type<any>[]>(
Expand All @@ -15,7 +15,7 @@ export const _ROOT_EFFECTS = new InjectionToken<Type<any>[]>(
export const ROOT_EFFECTS = new InjectionToken<Type<any>[]>(
'ngrx/effects: Root Effects'
);
export const USER_PROVIDED_FEATURE_EFFECTS = new InjectionToken<Type<any>[]>(
export const USER_PROVIDED_FEATURE_EFFECTS = new InjectionToken<Type<any>[][]>(
'ngrx/effects: User Provided Feature Effects'
);
export const _FEATURE_EFFECTS = new InjectionToken<Type<any>[]>(
Expand Down

0 comments on commit f79529a

Please sign in to comment.