@bengo.co/typescript-web-starter
Version:
A simple website project written in TypeScript. Use this as a starting point for your project.
12 lines (10 loc) • 324 B
TypeScript
declare module "redux-inject-reducer-and-saga" {
import { Store, ReducersMapObject, StoreEnhancer, Middleware } from "redux";
import { History } from "history";
export function configureStore<State>(
reducers?: ReducersMapObject,
initialState?: State,
history?: History,
middlewares?: Middleware[],
): Store;
}