UNPKG

ngrx-reducer-effects

Version:

Return side-effects as data from your NgRx reducers

8 lines (7 loc) 281 B
import { EffectConfig } from './effect-config'; export declare const stateWithEffectsBrand = "StateWithEffects"; export declare type StateWithEffects<TState, TEffect> = { __brand: typeof stateWithEffectsBrand; state: TState; effects: EffectConfig<TEffect>[]; };