@@ -498,6 +498,7 @@ declare module '@reduxjs/toolkit' {
498
498
State ,
499
499
CaseReducers extends CreatorCaseReducers <State >,
500
500
Name extends string ,
501
+ ReducerPath extends string ,
501
502
> {
502
503
[reducerCreatorType ]: ReducerCreatorEntry <
503
504
() => ReducerDefinition <typeof reducerCreatorType >
@@ -538,6 +539,7 @@ declare module '@reduxjs/toolkit' {
538
539
State ,
539
540
CaseReducers extends CreatorCaseReducers <State >,
540
541
Name extends string ,
542
+ ReducerPath extends string ,
541
543
> {
542
544
[batchedCreatorType ]: ReducerCreatorEntry <
543
545
<Payload >(
@@ -576,6 +578,7 @@ declare module '@reduxjs/toolkit' {
576
578
State ,
577
579
CaseReducers extends CreatorCaseReducers <State >,
578
580
Name extends string ,
581
+ ReducerPath extends string ,
579
582
> {
580
583
[loaderCreatorType ]: ReducerCreatorEntry <
581
584
// highlight-next-line
@@ -602,6 +605,7 @@ declare module '@reduxjs/toolkit' {
602
605
State ,
603
606
CaseReducers extends CreatorCaseReducers <State >,
604
607
Name extends string ,
608
+ ReducerPath extends string ,
605
609
> {
606
610
[loaderCreatorType ]: ReducerCreatorEntry <
607
611
() => {
@@ -643,6 +647,7 @@ declare module '@reduxjs/toolkit' {
643
647
State ,
644
648
CaseReducers extends CreatorCaseReducers <State >,
645
649
Name extends string ,
650
+ ReducerPath extends string ,
646
651
> {
647
652
[asyncThunkCreatorType ]: ReducerCreatorEntry <
648
653
<ThunkArg , Returned >(
@@ -680,6 +685,7 @@ declare module '@reduxjs/toolkit' {
680
685
State ,
681
686
CaseReducers extends CreatorCaseReducers <State >,
682
687
Name extends string ,
688
+ ReducerPath extends string ,
683
689
> {
684
690
[preparedReducerType ]: ReducerCreatorEntry <
685
691
<Prepare extends PrepareAction <any >>(
@@ -790,6 +796,7 @@ declare module '@reduxjs/toolkit' {
790
796
State ,
791
797
CaseReducers extends CreatorCaseReducers <State >,
792
798
Name extends string ,
799
+ ReducerPath extends string ,
793
800
> {
794
801
[toastCreatorType ]: ReducerCreatorEntry <
795
802
(config : ToastReducerConfig <State >) => ToastReducerDefinition <State >,
@@ -914,6 +921,7 @@ declare module '@reduxjs/toolkit' {
914
921
State ,
915
922
CaseReducers extends CreatorCaseReducers <State >,
916
923
Name extends string ,
924
+ ReducerPath extends string ,
917
925
> {
918
926
[paginationCreatorType ]: ReducerCreatorEntry <
919
927
// make sure the creator is only called when state is compatible
@@ -984,6 +992,7 @@ declare module '@reduxjs/toolkit' {
984
992
State ,
985
993
CaseReducers extends CreatorCaseReducers <State >,
986
994
Name extends string ,
995
+ ReducerPath extends string ,
987
996
> {
988
997
[historyCreatorType ]: ReducerCreatorEntry <
989
998
// make sure the creator is only called when state is compatibleState extends HistoryState<unknown>
@@ -1097,6 +1106,7 @@ declare module '@reduxjs/toolkit' {
1097
1106
State ,
1098
1107
CaseReducers extends CreatorCaseReducers <State >,
1099
1108
Name extends string ,
1109
+ ReducerPath extends string ,
1100
1110
> {
1101
1111
[undoableCreatorType ]: ReducerCreatorEntry <
1102
1112
State extends HistoryState <infer Data >
0 commit comments