Skip to content

Commit

Permalink
Merge pull request #3393 from shrouxm/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson authored May 6, 2023
2 parents 862bef3 + 13b7fe1 commit 627572a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/toolkit/src/createAsyncThunk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export type BaseThunkAPI<
S,
E,
D extends Dispatch = Dispatch,
RejectedValue = undefined,
RejectedValue = unknown,
RejectedMeta = unknown,
FulfilledMeta = unknown
> = {
Expand Down Expand Up @@ -137,7 +137,7 @@ type GetDispatch<ThunkApiConfig> = ThunkApiConfig extends {
>
: ThunkDispatch<GetState<ThunkApiConfig>, GetExtra<ThunkApiConfig>, AnyAction>

type GetThunkAPI<ThunkApiConfig> = BaseThunkAPI<
export type GetThunkAPI<ThunkApiConfig> = BaseThunkAPI<
GetState<ThunkApiConfig>,
GetExtra<ThunkApiConfig>,
GetDispatch<ThunkApiConfig>,
Expand Down

0 comments on commit 627572a

Please sign in to comment.