Socket
Socket
Sign inDemoInstall

redux-state-branch

Package Overview
Dependencies
3
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.30 to 0.0.31

10

dist/index.d.ts

@@ -10,7 +10,7 @@ interface AnyAction<T = any> {

export declare type ItemsT<T> = Partial<T> | Array<Partial<T>>;
export interface IAction<T> extends AnyAction {
items: ItemsT<T>;
meta: {
[key: string]: any;
export interface StateBranchAction<ItemT, BranchStateT> extends AnyAction {
items: {
[key: string]: ItemT;
};
meta: BranchStateT;
}

@@ -103,3 +103,3 @@ export interface Constants {

defaultState?: BranchStateT;
reducer?: (state: BranchStateT, action: IAction<ItemT>) => BranchStateT;
reducer?: (state: BranchStateT, action: any) => BranchStateT;
generateId?: () => string;

@@ -106,0 +106,0 @@ });

{
"name": "redux-state-branch",
"version": "0.0.30",
"version": "0.0.31",
"private": false,

@@ -5,0 +5,0 @@ "description": "A redux wrapper for sane people.",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc