Package-level declarations
Types
Link copied to clipboard
Marker interface for every Redux action.
Link copied to clipboard
@Target(allowedTargets = [AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.TYPEALIAS, AnnotationTarget.PROPERTY] )
Link copied to clipboard
Type alias for Redux dispatch function. In contrast to Redux dispatch, it returns no value.
Link copied to clipboard
The scope for accessing current state of the Redux store and dispatching actions. Beside standard Redux operations, it introduces a DispatchClosure mechanism.
Link copied to clipboard
Type alias for a pure function that accepts the current state of type T and an action, decides how to update the state if necessary, and returns the new state. This is equivalent to Redux reducer.