Skip to content

Commit 813b633

Browse files
jedmaotimdorr
authored andcommitted
fix: typo TExtraThunkARg -> TExtraThunkArg (#263)
1 parent 3f56c2f commit 813b633

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ export type ThunkActionDispatch<
8181
export type ThunkMiddleware<
8282
TState = {},
8383
TBasicAction extends Action = AnyAction,
84-
TExtraThunkARg = undefined
84+
TExtraThunkArg = undefined
8585
> = Middleware<
86-
ThunkDispatch<TState, TExtraThunkARg, TBasicAction>,
86+
ThunkDispatch<TState, TExtraThunkArg, TBasicAction>,
8787
TState,
88-
ThunkDispatch<TState, TExtraThunkARg, TBasicAction>
88+
ThunkDispatch<TState, TExtraThunkArg, TBasicAction>
8989
>;
9090

9191
declare const thunk: ThunkMiddleware & {

0 commit comments

Comments
 (0)