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

reshow-flux-base

Package Overview
Dependencies
Maintainers
1
Versions
132
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reshow-flux-base - npm Package Compare versions

Comparing version 0.17.46 to 0.17.47

5

build/cjs/src/type.js

@@ -14,2 +14,5 @@ "use strict";

/**
* @typedef {import("reshow-constant").SAFE_UNDEFINED} SAFE_UNDEFINED
*/
/**
* @interface

@@ -19,3 +22,3 @@ */

(0, _classCallCheck2["default"])(this, ActionObject);
/** @type {string=} */
/** @type {string|SAFE_UNDEFINED=} */
(0, _defineProperty2["default"])(this, "type", void 0);

@@ -22,0 +25,0 @@ /** @type {Payload=} */

2

package.json
{
"version": "0.17.46",
"version": "0.17.47",
"name": "reshow-flux-base",

@@ -4,0 +4,0 @@ "repository": {

@@ -5,7 +5,10 @@ /**

/**
* @typedef {import("reshow-constant").SAFE_UNDEFINED} SAFE_UNDEFINED
*/
/**
* @interface
*/
export class ActionObject {
/** @type {string=} */
type: string | undefined;
/** @type {string|SAFE_UNDEFINED=} */
type: (string | SAFE_UNDEFINED) | undefined;
/** @type {Payload=} */

@@ -88,2 +91,3 @@ params: Payload | undefined;

};
export type SAFE_UNDEFINED = import("reshow-constant").SAFE_UNDEFINED;
export type RefineAction<ActionType = ActionObject> = ActionType;

@@ -90,0 +94,0 @@ export type FluxHandler<StateType, ActionType> = (NextState: StateType, Action: RefineAction<ActionType>, PrevState: StateType) => any;

Sorry, the diff of this file is not supported yet

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