import * as _ from 'lodash'; import { createStore, Store as ReduxStore } from 'redux'; import { INITIAL_STATE, reducer, State } from './reducer'; export type Store = ReduxStore; export const store = { create: (withState: Partial): Store => { const allInitialState = { INITIAL_STATE, ...withState, }; return createStore(reducer, allInitialState); }, };