We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61e9e4d commit fdb2e15Copy full SHA for fdb2e15
src/index.ts
@@ -5,7 +5,8 @@ export type {
5
ThunkAction,
6
ThunkDispatch,
7
ThunkActionDispatch,
8
- ThunkMiddleware
+ ThunkMiddleware,
9
+ ThunkOverload
10
} from './types'
11
12
/** A function that accepts a potential "extra argument" value to be injected later,
src/types.ts
@@ -97,5 +97,5 @@ export type ThunkMiddleware<
97
> = Middleware<
98
ThunkOverload<State, ExtraThunkArg>,
99
State,
100
- ThunkDispatch<State, ExtraThunkArg, BasicAction>
+ Dispatch<BasicAction>
101
>
0 commit comments