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

@types/redux-actions

Package Overview
Dependencies
Maintainers
1
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/redux-actions - npm Package Compare versions

Comparing version 0.8.30 to 0.8.31

18

redux-actions/index.d.ts

@@ -59,4 +59,9 @@ // Type definitions for redux-actions v0.8.0

export function handleAction<StateAndPayload>(
actionType: { toString: () => string },
reducer: Reducer<StateAndPayload, StateAndPayload> | ReducerMap<StateAndPayload, StateAndPayload>
): Reducer<StateAndPayload, StateAndPayload>;
export function handleAction<State, Payload>(
actionType: string,
actionType: { toString: () => string },
reducer: Reducer<State, Payload> | ReducerMap<State, Payload>

@@ -66,6 +71,11 @@ ): Reducer<State, Payload>;

export function handleAction<State, Payload, Meta>(
actionType: string,
actionType: { toString: () => string },
reducer: ReducerMeta<State, Payload, Meta> | ReducerMap<State, Payload>
): Reducer<State, Payload>;
export function handleActions<StateAndPayload>(
reducerMap: ReducerMap<StateAndPayload, StateAndPayload>,
initialState?: StateAndPayload
): Reducer<StateAndPayload, StateAndPayload>;
export function handleActions<State, Payload>(

@@ -75,3 +85,7 @@ reducerMap: ReducerMap<State, Payload>,

): Reducer<State, Payload>;
export function combineActions(
...actionTypes: { toString: () => string }[]
): { toString: () => string };
}

5

redux-actions/package.json
{
"name": "@types/redux-actions",
"version": "0.8.30",
"version": "0.8.31",
"description": "TypeScript definitions for redux-actions v0.8.0",

@@ -14,4 +14,5 @@ "license": "MIT",

"dependencies": {},
"peerDependencies": {},
"typings": "index.d.ts",
"typesPublisherContentHash": "ef6b6554e2b3e7f23c255729a22c2bbb8333927651a9dfd2f40fc473dc0af853"
"typesPublisherContentHash": "6a1883e482c6019614c56b7b372166992e61417d33dd1b320babb345e0be32e4"
}

@@ -11,3 +11,3 @@ # Installation

Additional Details
* Last updated: Mon, 19 Sep 2016 17:28:59 GMT
* Last updated: Wed, 26 Oct 2016 19:23:30 GMT
* File structure: ProperModule

@@ -14,0 +14,0 @@ * Library Dependencies: none

@@ -24,3 +24,3 @@ {

"hasPackageJson": false,
"contentHash": "ef6b6554e2b3e7f23c255729a22c2bbb8333927651a9dfd2f40fc473dc0af853"
"contentHash": "6a1883e482c6019614c56b7b372166992e61417d33dd1b320babb345e0be32e4"
}
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