File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/toolkit/src/listenerMiddleware Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ export interface TypedActionCreator<Type extends string> {
28
28
29
29
/** @internal */
30
30
export type AnyListenerPredicate < State > = (
31
- action : unknown ,
31
+ action : UnknownAction ,
32
32
currentState : State ,
33
33
originalState : State
34
34
) => boolean
35
35
36
36
/** @public */
37
37
export type ListenerPredicate < Action extends ReduxAction , State > = (
38
- action : unknown ,
38
+ action : UnknownAction ,
39
39
currentState : State ,
40
40
originalState : State
41
41
) => action is Action
@@ -137,7 +137,7 @@ export interface ForkOptions {
137
137
* If true, causes the parent task to not be marked as complete until
138
138
* all autoJoined forks have completed or failed.
139
139
*/
140
- autoJoin : boolean ;
140
+ autoJoin : boolean
141
141
}
142
142
143
143
/** @public */
You can’t perform that action at this time.
0 commit comments