Skip to content

Commit

Permalink
fix: typo TExtraThunkARg -> TExtraThunkArg (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
jedmao authored and timdorr committed Sep 2, 2019
1 parent 3f56c2f commit 813b633
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ export type ThunkActionDispatch<
export type ThunkMiddleware<
TState = {},
TBasicAction extends Action = AnyAction,
TExtraThunkARg = undefined
TExtraThunkArg = undefined
> = Middleware<
ThunkDispatch<TState, TExtraThunkARg, TBasicAction>,
ThunkDispatch<TState, TExtraThunkArg, TBasicAction>,
TState,
ThunkDispatch<TState, TExtraThunkARg, TBasicAction>
ThunkDispatch<TState, TExtraThunkArg, TBasicAction>
>;

declare const thunk: ThunkMiddleware & {
Expand Down

0 comments on commit 813b633

Please sign in to comment.