File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -350,7 +350,7 @@ interface AsyncThunkCreator<
350
350
State ,
351
351
CurriedThunkApiConfig extends PreventCircular < AsyncThunkConfig > = PreventCircular < AsyncThunkConfig >
352
352
> {
353
- < ThunkArg extends any , Returned = unknown > (
353
+ < Returned , ThunkArg = void > (
354
354
payloadCreator : AsyncThunkPayloadCreator <
355
355
Returned ,
356
356
ThunkArg ,
@@ -369,8 +369,8 @@ interface AsyncThunkCreator<
369
369
CurriedThunkApiConfig
370
370
>
371
371
<
372
- ThunkArg extends any ,
373
- Returned = unknown ,
372
+ Returned ,
373
+ ThunkArg ,
374
374
ThunkApiConfig extends PreventCircular < AsyncThunkConfig > = { }
375
375
> (
376
376
payloadCreator : AsyncThunkPayloadCreator <
Original file line number Diff line number Diff line change @@ -666,8 +666,8 @@ const value = actionCreators.anyKey
666
666
}
667
667
) ,
668
668
testExplicitType : create . asyncThunk <
669
- TestArg ,
670
669
TestReturned ,
670
+ TestArg ,
671
671
{
672
672
rejectValue : TestReject
673
673
}
You can’t perform that action at this time.
0 commit comments