@types/redux-actions
Advanced tools
Comparing version 0.8.30 to 0.8.31
@@ -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 }; | ||
} | ||
{ | ||
"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" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5304
92