From 813b633b4cccb83fdd14da015424a1a5aed3026c Mon Sep 17 00:00:00 2001 From: Jed Mao Date: Mon, 2 Sep 2019 17:34:35 -0500 Subject: [PATCH] fix: typo TExtraThunkARg -> TExtraThunkArg (#263) --- src/index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.d.ts b/src/index.d.ts index 1853d59..3267416 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -81,11 +81,11 @@ export type ThunkActionDispatch< export type ThunkMiddleware< TState = {}, TBasicAction extends Action = AnyAction, - TExtraThunkARg = undefined + TExtraThunkArg = undefined > = Middleware< - ThunkDispatch, + ThunkDispatch, TState, - ThunkDispatch + ThunkDispatch >; declare const thunk: ThunkMiddleware & {