UNPKG

react-application-core

Version:

A react-based application core for the business applications.

10 lines (9 loc) 412 B
import { Middleware, ReducersMapObject, Store } from 'redux'; import { IStoreEntity } from '../definition'; /** * @stable [17.06.2020] * @param {TReducers} reducers * @param {Middleware[]} appMiddlewares * @returns {Promise<Store<IStoreEntity>>} */ export declare const makeStore: <TReducers = ReducersMapObject>(reducers: TReducers, appMiddlewares?: Middleware[]) => Promise<Store<IStoreEntity>>;