@laserware/stasis
    Preparing search index...

    Interface StoreCreator

    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.

    The type of state to be held by the store.

    The type of actions which may be dispatched.

    The initial state that is passed into the reducer.

    Store extension that is mixed in to the Store type.

    State extension that is mixed into the state type.