Adds a case reducer to handle a single exact action type.
Either a plain action type string, or an action creator generated by createAction
that can be used to determine the action type.
The actual case reducer function.
Adds a case reducer to handle a single exact action type.
The actual case reducer function.
Adds a "default case" reducer that is executed if no case reducer and no matcher reducer was executed for this action.
The fallback "default case" reducer function.
Allows you to match your incoming actions against your own filter function instead of only the action.type
property.
A matcher function. In TypeScript, this should be a type predicate function
The actual case reducer function.
Generated using TypeDoc
A builder for an action <-> reducer map.