New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

kpdux

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kpdux - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

3

lib/interfaces/index.d.ts

@@ -11,3 +11,3 @@ export interface IReduces<State> {

export interface IActions<State> {
[key: string]: (this: IStore<State> & IGetters<State> & IActions<State> & IMutations<State>, type: string, ...args: any[]) => any;
[key: string]: (this: IStore<State> & IGetters<State> & IActions<State> & IMutations<State>, ...args: any[]) => any;
}

@@ -25,2 +25,3 @@ export interface IMutations<State> {

};
getState: () => State;
dispatch: (...args: any[]) => any;

@@ -27,0 +28,0 @@ }

@@ -20,4 +20,3 @@ declare class StoreModule {

setActions(store: any): void;
getter(name: string): void;
dispatch(action: any, ...args: any): any;
dispatch(action: any, ...args: any[]): any;
getState(): any;

@@ -24,0 +23,0 @@ }

@@ -196,3 +196,2 @@ "use strict";

}
getter(name) { }
dispatch(action, ...args) {

@@ -199,0 +198,0 @@ return this.store.dispatch({

{
"name": "kpdux",
"version": "2.0.0",
"version": "2.0.1",
"description": "js lib",
"author": "Kris Papercut <kearis666@gmail.com>",
"license": "ISC",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"keywords": [

@@ -10,0 +10,0 @@ "kp",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc