forked from enviPath/enviPy
19 lines
416 B
TypeScript
19 lines
416 B
TypeScript
import {Middleware, Dispatch} from "redux";
|
|
|
|
|
|
export type ThunkAction<R, S, E> = (dispatch: Dispatch<S>, getState: () => S,
|
|
extraArgument: E) => R;
|
|
|
|
declare module "redux" {
|
|
export interface Dispatch<S> {
|
|
<R, E>(asyncAction: ThunkAction<R, S, E>): R;
|
|
}
|
|
}
|
|
|
|
|
|
declare const thunk: Middleware & {
|
|
withExtraArgument(extraArgument: any): Middleware;
|
|
};
|
|
|
|
export default thunk;
|