You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/types.ts
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -14,14 +14,14 @@ import type { Action, AnyAction, Middleware } from 'redux'
14
14
exportinterfaceThunkDispatch<
15
15
State,
16
16
ExtraThunkArg,
17
-
BasicActionextendsAction
17
+
BasicActionextendsAction,
18
18
>{
19
19
// When the thunk middleware is added, `store.dispatch` now has three overloads (NOTE: the order here matters for correct behavior and is very fragile - do not reorder these!):
20
20
21
21
// 1) The specific thunk function overload
22
22
/** Accepts a thunk function, runs it, and returns whatever the thunk itself returns */
0 commit comments