You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
withInitialState: Creates a reducer transformer that will inject initial state before calling the reducing function.
withFilter: Creates a reducer transformer that will filter based on the action.
updateSlice: Creates a reducer transformer that updates only one slice of the state based on the action.
isolateSlice: Creates a reducer transformer that calls the reducer with only a slice of the state, based on the action.
withOldStateIfEqual: Creates a reducer transformer that will compare the old and new state with a custom function, and re-use the old state if it returns true.
createByKey: Creates a reducer transformer that adds byKey-filtering.
createGetByKey: Creates a selector transformer with byKey-filtering.
withReducer: Creates a reducer transformer that applies an injected reducer before applying the next reducer.