Skip to content

Commit

Permalink
fix(core): CHECKOUT-3053 Export Reducer and ReducerMap interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
davidchin committed May 6, 2018
1 parent 7376b3b commit d33d91c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ export { default as Action } from './action';
export { default as DataStore } from './data-store';
export { default as DispatchableDataStore } from './dispatchable-data-store';
export { default as ReadableDataStore } from './readable-data-store';
export { default as Reducer } from './reducer';
export { default as ThunkAction } from './thunk-action';
export { default as combineReducers } from './combine-reducers';
export { default as combineReducers, ReducerMap } from './combine-reducers';
export { default as composeReducers } from './compose-reducers';
export { default as createAction } from './create-action';
export { default as createDataStore } from './create-data-store';
Expand Down

0 comments on commit d33d91c

Please sign in to comment.