main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | // functions
|
---|
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 | // types
|
---|
12 | // store
|
---|
13 | export {
|
---|
14 | Dispatch,
|
---|
15 | Unsubscribe,
|
---|
16 | Observable,
|
---|
17 | Observer,
|
---|
18 | Store,
|
---|
19 | StoreCreator,
|
---|
20 | StoreEnhancer,
|
---|
21 | StoreEnhancerStoreCreator
|
---|
22 | } from './types/store'
|
---|
23 | // reducers
|
---|
24 | export {
|
---|
25 | Reducer,
|
---|
26 | ReducersMapObject,
|
---|
27 | StateFromReducersMapObject,
|
---|
28 | ReducerFromReducersMapObject,
|
---|
29 | ActionFromReducer,
|
---|
30 | ActionFromReducersMapObject,
|
---|
31 | PreloadedStateShapeFromReducersMapObject
|
---|
32 | } from './types/reducers'
|
---|
33 | // action creators
|
---|
34 | export { ActionCreator, ActionCreatorsMapObject } from './types/actions'
|
---|
35 | // middleware
|
---|
36 | export { MiddlewareAPI, Middleware } from './types/middleware'
|
---|
37 | // actions
|
---|
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 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.