diff --git a/README.md b/README.md index 9a963053..8075f19c 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,19 @@ import rootReducer from './reducers' const persistConfig = { key: 'root', storage, + version?: number, + keyPrefix?: string, // @TODO remove in v6 + blacklist?: Array, + whitelist?: Array, + transforms?: Array, + throttle?: number, + migrate?: (PersistedState, number) => Promise, + stateReconciler?: false | Function, + getStoredState?: PersistConfig => Promise, // used for migrations + debug?: boolean, + serialize?: boolean, + timeout?: number, + writeFailHandler?: Function, } const persistedReducer = persistReducer(persistConfig, rootReducer)