UNPKG

redux-providers

Version:

Minimalist dependency injection system for redux. Create providers to be injected and used in redux reducers.

10 lines 503 B
import { Constructable } from "../types/constructable"; import { AbstractReduxModule } from "../decorators/module/module.decorator"; import { InstanceContainer } from "../container/instance-container"; import { Store } from "redux"; export declare function createReduxStore<ActionTree>(moduleTarget: Constructable<AbstractReduxModule>): { container: InstanceContainer; reduxActions: ActionTree; reduxStore: Store<any, import("redux").AnyAction>; }; //# sourceMappingURL=create-store.d.ts.map