Options
All
  • Public
  • Public/Protected
  • All
Menu

A store creator is a function that creates a Redux store. Like with dispatching function, we must distinguish the base store creator, createStore(reducer, preloadedState) exported from the Redux package, from store creators that are returned from the store enhancers.

template

S The type of state to be held by the store.

template

A The type of actions which may be dispatched.

template

Ext Store extension that is mixed in to the Store type.

template

StateExt State extension that is mixed into the state type.

Hierarchy

  • StoreCreator

Callable

  • A store creator is a function that creates a Redux store. Like with dispatching function, we must distinguish the base store creator, createStore(reducer, preloadedState) exported from the Redux package, from store creators that are returned from the store enhancers.

    Type parameters

    Parameters

    Returns Store<S & StateExt, A> & Ext

  • A store creator is a function that creates a Redux store. Like with dispatching function, we must distinguish the base store creator, createStore(reducer, preloadedState) exported from the Redux package, from store creators that are returned from the store enhancers.

    Type parameters

    Parameters

    Returns Store<S & StateExt, A> & Ext

Generated using TypeDoc