@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) • 327 B
TypeScript
declare module "redux-inject-reducer-and-saga" {
import { Store, ReducersMapObject, StoreEnhancer } from 'redux'
import { History } from 'history';
export function configureStore<State>(
reducers?: ReducersMapObject,
initialState?: State,
history?: History,
middlewares?: StoreEnhancer[]
) : Store
}