MCPcopy
hub / github.com/reduxjs/redux / Thunk

Interface Thunk

test/typescript/middleware.ts:61–63  ·  test/typescript/middleware.ts::Thunk

* Thunk middleware adds support for dispatching thunks.

Source from the content-addressed store, hash-verified

59 */
60
61interface Thunk<R, S, DispatchExt = {}> {
62 (dispatch: Dispatch & ThunkDispatch<S> & DispatchExt, getState: () => S): R
63}
64
65interface ThunkDispatch<S, DispatchExt = {}> {
66 <R>(thunk: Thunk<R, S, DispatchExt>): R

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected