Socket
Socket
Sign inDemoInstall

redux-persist

Package Overview
Dependencies
1
Maintainers
2
Versions
186
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.9.0 to 5.9.1

2

package.json
{
"name": "redux-persist",
"version": "5.9.0",
"version": "5.9.1",
"description": "persist and rehydrate redux stores",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -111,3 +111,3 @@

export interface PersistState { version: number; rehydrated: boolean; }
export type PersistedState = { _persist: PersistState } | void;
export interface PersistedState { _persist?: PersistState }

@@ -390,3 +390,3 @@ export interface PersistConfig {

import { PersistConfig } from "redux-persist";
export function autoMergeLevel1<S>(inboundState: S, originalState: S, reducedState: S, { debug }: PersistConfig): S;
export default function autoMergeLevel1<S>(inboundState: S, originalState: S, reducedState: S, { debug }: PersistConfig): S;
}

@@ -396,7 +396,7 @@

import { PersistConfig } from "redux-persist";
export function autoMergeLevel2<S>(inboundState: S, originalState: S, reducedState: S, { debug }: PersistConfig): S;
export default function autoMergeLevel2<S>(inboundState: S, originalState: S, reducedState: S, { debug }: PersistConfig): S;
}
declare module "redux-persist/es/stateReconciler/hardSet" {
export function hardSet<S>(inboundState: S): S;
export default function hardSet<S>(inboundState: S): S;
}

@@ -403,0 +403,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc