* Thunk middleware adds support for dispatching thunks.
| 59 | */ |
| 60 | |
| 61 | interface Thunk<R, S, DispatchExt = {}> { |
| 62 | (dispatch: Dispatch & ThunkDispatch<S> & DispatchExt, getState: () => S): R |
| 63 | } |
| 64 | |
| 65 | interface ThunkDispatch<S, DispatchExt = {}> { |
| 66 | <R>(thunk: Thunk<R, S, DispatchExt>): R |
nothing calls this directly
no outgoing calls
no test coverage detected