A collection of reducers for a State.
interface State { foos: string[]}interface Actions { foo: string}type Reducers = StateReducers<State, Actions>// {// __INIT__: () => State,// foo: (state: State, param: string) => State,// } Copy
interface State { foos: string[]}interface Actions { foo: string}type Reducers = StateReducers<State, Actions>// {// __INIT__: () => State,// foo: (state: State, param: string) => State,// }
Generated using TypeDoc
A collection of reducers for a State.