File tree Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change
1
+ // functions
1
2
import createStore from './createStore'
2
3
import combineReducers from './combineReducers'
3
4
import bindActionCreators from './bindActionCreators'
@@ -6,6 +7,35 @@ import compose from './compose'
6
7
import warning from './utils/warning'
7
8
import __DO_NOT_USE__ActionTypes from './utils/actionTypes'
8
9
10
+ // types
11
+ // store
12
+ export {
13
+ Dispatch ,
14
+ Unsubscribe ,
15
+ Observable ,
16
+ Observer ,
17
+ Store ,
18
+ DeepPartial ,
19
+ StoreCreator ,
20
+ StoreEnhancer
21
+ } from '..'
22
+ // reducers
23
+ export {
24
+ CombinedState ,
25
+ PreloadedState ,
26
+ Reducer ,
27
+ ReducerFromReducersMapObject ,
28
+ StateFromReducersMapObject ,
29
+ ActionFromReducer ,
30
+ ActionFromReducersMapObject
31
+ } from '..'
32
+ // action creators
33
+ export { ActionCreator , ActionCreatorsMapObject } from '..'
34
+ // middleware
35
+ export { MiddlewareAPI , Middleware } from '..'
36
+ // actions
37
+ export { Action , AnyAction } from '..'
38
+
9
39
/*
10
40
* This is a dummy function to check if the function name has been altered by minification.
11
41
* If the function has been minified and NODE_ENV !== 'production', warn the user.
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
- "lib" : [" es2015 " , " dom" ],
3
+ "lib" : [" es2017 " , " dom" ],
4
4
"strict" : true ,
5
5
"baseUrl" : " ../.." ,
6
6
"paths" : {
Original file line number Diff line number Diff line change 1
- 052d09d209c201be4d4cdbc8fcdf634b5172ab8c
1
+ 0abee9b5c3a10031fe5f1a563af699c66cbe8307
You can’t perform that action at this time.
0 commit comments