Socket
Socket
Sign inDemoInstall

reshow-return

Package Overview
Dependencies
Maintainers
1
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reshow-return - npm Package Compare versions

Comparing version 0.17.47 to 0.17.48

8

build/cjs/usePartialRender.js

@@ -18,7 +18,11 @@ "use strict";

*/
/**
* @typedef {string[]|Immutable.Seq} RenderKeysType
*/
/**
* @template ChildrenType
* @param {string[]|Immutable.Seq} [initRenderKeys]
* @param {RenderKeysType} [initRenderKeys]
* @param {{[key: string]: React.ReactElement}|Immutable.Map<string,React.ReactElement>} [initChildren]
* @returns {[React.ReactElement[], DispatchType<any, ChildrenType>, DispatchType<any, any[]>]}
* @returns {[React.ReactElement[], DispatchType<any, ChildrenType>, DispatchType<any, RenderKeysType>]}
*/

@@ -25,0 +29,0 @@ var usePartialRender = function usePartialRender(initRenderKeys, initChildren) {

{
"version": "0.17.47",
"version": "0.17.48",
"name": "reshow-return",

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

export default usePartialRender;
export type DispatchType<StateType, ActionType> = import('reshow-flux-base').DispatchType<StateType, ActionType>;
export type RenderKeysType = string[] | import("immutable").Seq<any, any>;
/**

@@ -9,10 +10,13 @@ * @template StateType

/**
* @typedef {string[]|Immutable.Seq} RenderKeysType
*/
/**
* @template ChildrenType
* @param {string[]|Immutable.Seq} [initRenderKeys]
* @param {RenderKeysType} [initRenderKeys]
* @param {{[key: string]: React.ReactElement}|Immutable.Map<string,React.ReactElement>} [initChildren]
* @returns {[React.ReactElement[], DispatchType<any, ChildrenType>, DispatchType<any, any[]>]}
* @returns {[React.ReactElement[], DispatchType<any, ChildrenType>, DispatchType<any, RenderKeysType>]}
*/
declare function usePartialRender<ChildrenType>(initRenderKeys?: string[] | import("immutable").Seq<any, any>, initChildren?: {
declare function usePartialRender<ChildrenType>(initRenderKeys?: RenderKeysType, initChildren?: {
[key: string]: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>;
} | Map<string, import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>>): [import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>[], DispatchType<any, ChildrenType>, DispatchType<any, any[]>];
} | Map<string, import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>>): [import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>[], DispatchType<any, ChildrenType>, DispatchType<any, RenderKeysType>];
import { Map } from "reshow-flux";

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