Skip to content

Commit

Permalink
fix(type): fix type for usm-redux
Browse files Browse the repository at this point in the history
  • Loading branch information
unadlib committed Dec 27, 2023
1 parent 7091e99 commit cf04d68
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions packages/usm-redux/src/createStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
createStore as createStoreWithRedux,
combineReducers,
ReducersMapObject,
PreloadedState,
Reducer,
Store as ReduxStore,
} from 'redux';
import {
Expand All @@ -28,7 +28,7 @@ import {

export const createStore = (
options: StoreOptions,
preloadedState?: PreloadedState<any>,
preloadedState?: any,
config: Config = {}
) => {
const {
Expand Down Expand Up @@ -165,11 +165,6 @@ export const createStore = (
enumerable: false,
value: strict,
},
[strictKey]: {
configurable: false,
enumerable: false,
value: strict,
},
[enablePatchesKey]: {
configurable: false,
enumerable: false,
Expand Down

0 comments on commit cf04d68

Please sign in to comment.