object Redux

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Redux
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Dispatch = (Any) ⇒ Any
  2. type Middleware[State] = (Store[State]) ⇒ (Dispatch) ⇒ Function1[Any, _]
  3. type NativeDispatch = Function1[Any, Any]
  4. type NativeEnhancer = Any
  5. type NativeMiddleware = Function1[NativeStore, Function1[NativeDispatch, Function1[Any, _]]]
  6. type NativeReducer = Function2[Any, NativeAction, Any]
  7. type Reducer[State] = (Option[State], Any) ⇒ State

Value Members

  1. def applyMiddleware[State](middlewares: Middleware[State]*): NativeEnhancer
  2. def combineReducers(reducers: Map[String, Function2[_, Action, _]]): Reducer[Object]
  3. def createStore[State](reducer: Reducer[State], enhancer: NativeEnhancer): Store[State]
  4. def createStore[State](reducer: Reducer[State]): Store[State]