Skip to content

Commit

Permalink
import types from src/types (reduxjs#3549)
Browse files Browse the repository at this point in the history
Former-commit-id: 9ff730b
  • Loading branch information
cellog authored and timdorr committed Aug 31, 2019
1 parent 0db0459 commit 61c22b6
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,28 @@ import __DO_NOT_USE__ActionTypes from './utils/actionTypes'
// types
// store
export {
CombinedState,
PreloadedState,
Dispatch,
Unsubscribe,
Observable,
Observer,
Store,
DeepPartial,
StoreCreator,
StoreEnhancer
} from '..'
} from './types/store'
// reducers
export {
CombinedState,
PreloadedState,
Reducer,
ReducerFromReducersMapObject,
StateFromReducersMapObject,
ActionFromReducer,
ActionFromReducersMapObject
} from '..'
} from './types/reducers'
// action creators
export { ActionCreator, ActionCreatorsMapObject } from './types/actions'
// middleware
export { MiddlewareAPI, Middleware } from '..'
export { MiddlewareAPI, Middleware } from './types/middleware'
// actions
export { Action, AnyAction } from './types/actions'

Expand Down

0 comments on commit 61c22b6

Please sign in to comment.