Skip to content

Commit

Permalink
export redux and selectors so it can be easily imported from chonky lib.
Browse files Browse the repository at this point in the history
  • Loading branch information
tuan43 authored and TimboKZ committed Jan 8, 2022
1 parent f75f68c commit 6f68809
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/chonky/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -44,3 +43,8 @@ export type ChonkyFileActionData = MapFileActionsToData<ChonkyActionUnion>;

// Extensions
export * from './extensions';

// Redux/Store
export * from './redux/store';
export * from './redux/selectors';
export { thunkDispatchFileAction, thunkRequestFileAction } from './redux/thunks/dispatchers.thunks';

0 comments on commit 6f68809

Please sign in to comment.