Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

satcheljs

Package Overview
Dependencies
Maintainers
3
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

satcheljs - npm Package Compare versions

Comparing version 4.2.2 to 4.2.3

2

lib/interfaces/SimpleAction.d.ts

@@ -1,2 +0,2 @@

declare type SimpleAction<TReturn> = void extends TReturn ? (...args: any[]) => TReturn : never;
declare type SimpleAction<TFunction extends (...args: any[]) => any> = void extends ReturnType<TFunction> ? TFunction : never;
export default SimpleAction;
import SimpleAction from './interfaces/SimpleAction';
export declare function createSimpleSubscriber(decorator: Function): <TReturn>(actionType: string, target: SimpleAction<TReturn>) => SimpleAction<TReturn>;
export declare const mutatorAction: <TReturn>(actionType: string, target: SimpleAction<TReturn>) => SimpleAction<TReturn>;
export declare function createSimpleSubscriber(decorator: Function): <TFunction extends (...args: any) => any>(actionType: string, target: TFunction) => SimpleAction<TFunction>;
export declare const mutatorAction: <TFunction extends (...args: any) => any>(actionType: string, target: TFunction) => SimpleAction<TFunction>;
{
"name": "satcheljs",
"version": "4.2.2",
"version": "4.2.3",
"description": "Store implementation for functional reactive flux.",

@@ -5,0 +5,0 @@ "lint-staged": {

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