Skip to content

Commit

Permalink
slap some pure annotations on the redux enhancers
Browse files Browse the repository at this point in the history
  • Loading branch information
EskiMojo14 committed May 31, 2024
1 parent f54cbdd commit f5f39fe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/redux.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ export function withRedux<StateFn extends BaseHistoryStateFn>(
};
}

export const createHistoryAdapter = withRedux(createAdapter);
export const createHistoryAdapter = /* @__PURE__ */ withRedux(createAdapter);

export const createPatchHistoryAdapter = withRedux(createPatchAdapter);
export const createPatchHistoryAdapter =
/* @__PURE__ */ withRedux(createPatchAdapter);

0 comments on commit f5f39fe

Please sign in to comment.