Skip to content

Commit f0d381c

Browse files
author
Josh Burgess
committed
Fix TS definition errors & bump version
1 parent f91c7ce commit f0d381c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export declare function createEpicMiddleware<A extends Action, S> (
4141
): EpicMiddleware<A, S>;
4242

4343

44-
export declare function createStateStreamEnhancer<A, S> (
44+
export declare function createStateStreamEnhancer<A extends Action, S> (
4545
epicMiddleware: EpicMiddleware<A, S>
4646
): StoreEnhancer<S>;
4747

@@ -81,4 +81,4 @@ export declare function withState<A extends Action, S> (
8181
stateStream: Stream<S>
8282
): (actionStream: Stream<A>) => Stream<[S, A]>;
8383

84-
export const EPIC_END = '@@redux-most/EPIC_END'
84+
export const EPIC_END = '@@redux-most/EPIC_END';

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redux-most",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"description": "Most.js based middleware for Redux. Handle async actions with monadic streams and reactive programming.",
55
"main": "lib/index.js",
66
"module": "es/index.js",

0 commit comments

Comments
 (0)