diff --git a/packages/chonky/src/index.ts b/packages/chonky/src/index.ts index 1ac54614..f2954dac 100644 --- a/packages/chonky/src/index.ts +++ b/packages/chonky/src/index.ts @@ -10,7 +10,6 @@ export { FullFileBrowser } from './components/external/FullFileBrowser'; export { ChonkyActions, DefaultFileActions, OptionIds } from './action-definitions'; export { defineFileAction } from './util/helpers'; -export { thunkDispatchFileAction, thunkRequestFileAction } from './redux/thunks/dispatchers.thunks'; export { FileHelper } from './util/file-helper'; export { FileData, FileArray } from './types/file.types'; @@ -44,3 +43,8 @@ export type ChonkyFileActionData = MapFileActionsToData; // Extensions export * from './extensions'; + +// Redux/Store +export * from './redux/store'; +export * from './redux/selectors'; +export { thunkDispatchFileAction, thunkRequestFileAction } from './redux/thunks/dispatchers.thunks';