// Type definitions for redux-thunk // Project: https://github.com/gaearon/redux-thunk // Definitions by: Qubo // Definitions: https://github.com/borisyankov/DefinitelyTyped /// declare module "redux-thunk" { import { Middleware, Dispatch } from 'redux'; export interface Thunk extends Middleware { } export interface ThunkInterface { (dispatch: Dispatch, getState?: () => T): any; } var thunk: Thunk; export default thunk; }