1 |
|
2 | import { createStore, legacy_createStore } from './createStore'
|
3 | import combineReducers from './combineReducers'
|
4 | import bindActionCreators from './bindActionCreators'
|
5 | import applyMiddleware from './applyMiddleware'
|
6 | import compose from './compose'
|
7 | import isAction from './utils/isAction'
|
8 | import isPlainObject from './utils/isPlainObject'
|
9 | import __DO_NOT_USE__ActionTypes from './utils/actionTypes'
|
10 |
|
11 |
|
12 |
|
13 | export {
|
14 | Dispatch,
|
15 | Unsubscribe,
|
16 | Observable,
|
17 | Observer,
|
18 | Store,
|
19 | StoreCreator,
|
20 | StoreEnhancer,
|
21 | StoreEnhancerStoreCreator
|
22 | } from './types/store'
|
23 |
|
24 | export {
|
25 | Reducer,
|
26 | ReducersMapObject,
|
27 | StateFromReducersMapObject,
|
28 | ReducerFromReducersMapObject,
|
29 | ActionFromReducer,
|
30 | ActionFromReducersMapObject,
|
31 | PreloadedStateShapeFromReducersMapObject
|
32 | } from './types/reducers'
|
33 |
|
34 | export { ActionCreator, ActionCreatorsMapObject } from './types/actions'
|
35 |
|
36 | export { MiddlewareAPI, Middleware } from './types/middleware'
|
37 |
|
38 | export { Action, UnknownAction, AnyAction } from './types/actions'
|
39 |
|
40 | export {
|
41 | createStore,
|
42 | legacy_createStore,
|
43 | combineReducers,
|
44 | bindActionCreators,
|
45 | applyMiddleware,
|
46 | compose,
|
47 | isAction,
|
48 | isPlainObject,
|
49 | __DO_NOT_USE__ActionTypes
|
50 | }
|