Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
This commit is contained in:
marcin mikołajczak
2024-05-13 19:00:42 +02:00
parent a58c52631e
commit cb3a900d39
639 changed files with 1185 additions and 887 deletions

View File

@ -103,6 +103,8 @@ type EntityAction =
| ReturnType<typeof entitiesTransaction>;
export {
type DeleteEntitiesOpts,
type EntityAction,
ENTITIES_IMPORT,
ENTITIES_DELETE,
ENTITIES_DISMISS,
@ -122,5 +124,3 @@ export {
invalidateEntityList,
entitiesTransaction,
};
export type { DeleteEntitiesOpts, EntityAction };

View File

@ -183,5 +183,4 @@ const reducer = (state: Readonly<State> = {}, action: EntityAction): State => {
}
};
export default reducer;
export type { State };
export { type State, reducer as default };