diff --git a/index.d.ts b/index.d.ts index 24cf875..6c850d6 100644 --- a/index.d.ts +++ b/index.d.ts @@ -6,7 +6,7 @@ export type ThunkAction = (dispatch: Dispatch, getState: () => S, declare module "redux" { export interface Dispatch { - (asyncAction: ThunkAction): R; + (asyncAction: ThunkAction | S): R; } }