redux/
effects.rs

1use crate::{ActionWithMeta, Store};
2
3pub type Effects<State, Service, Action> =
4    fn(&mut Store<State, Service, Action>, ActionWithMeta<Action>);