1
- import {
1
+ // types
2
+ // store
3
+ export {
2
4
Dispatch ,
3
5
Unsubscribe ,
4
6
Observable ,
@@ -8,8 +10,8 @@ import {
8
10
StoreCreator ,
9
11
StoreEnhancer
10
12
} from '..'
11
- import createStore from './createStore'
12
- import {
13
+ // reducers
14
+ export {
13
15
CombinedState ,
14
16
PreloadedState ,
15
17
Reducer ,
@@ -18,14 +20,19 @@ import {
18
20
ActionFromReducer ,
19
21
ActionFromReducersMapObject
20
22
} from '..'
23
+ // action creators
24
+ export { ActionCreator , ActionCreatorsMapObject } from '..'
25
+ // middleware
26
+ export { MiddlewareAPI , Middleware } from '..'
27
+ // actions
28
+ export { Action , AnyAction } from '..'
29
+ // functions
30
+ import createStore from './createStore'
21
31
import combineReducers from './combineReducers'
22
- import { ActionCreator , ActionCreatorsMapObject } from '..'
23
32
import bindActionCreators from './bindActionCreators'
24
- import { MiddlewareAPI , Middleware } from '..'
25
33
import applyMiddleware from './applyMiddleware'
26
34
import compose from './compose'
27
35
import warning from './utils/warning'
28
- import { Action , AnyAction } from '..'
29
36
import __DO_NOT_USE__ActionTypes from './utils/actionTypes'
30
37
31
38
/*
49
56
}
50
57
51
58
export {
52
- // types
53
- // actions
54
- Action ,
55
- AnyAction ,
56
- // action creators
57
- ActionCreator ,
58
- ActionCreatorsMapObject ,
59
- // reducers
60
- CombinedState ,
61
- PreloadedState ,
62
- Reducer ,
63
- ReducerFromReducersMapObject ,
64
- StateFromReducersMapObject ,
65
- ActionFromReducer ,
66
- ActionFromReducersMapObject ,
67
- // middleware
68
- MiddlewareAPI ,
69
- Middleware ,
70
- // store
71
- Dispatch ,
72
- Unsubscribe ,
73
- Observable ,
74
- Observer ,
75
- Store ,
76
- DeepPartial ,
77
- StoreCreator ,
78
- StoreEnhancer ,
79
- // things
80
59
createStore ,
81
60
combineReducers ,
82
61
bindActionCreators ,
0 commit comments