diff --git a/index.d.ts b/index.d.ts index 76ed55e..9992ad1 100644 --- a/index.d.ts +++ b/index.d.ts @@ -2,7 +2,7 @@ import { Middleware, Action, AnyAction } from "redux"; export interface ThunkDispatch { (action: T): T; - (asyncAction: ThunkAction): R; + (thunkAction: ThunkAction): R; } export type ThunkAction = (