UNPKG

redux-dynamic-modules-saga

Version:

Saga Extension for redux-dynamic-modules

8 lines (7 loc) 359 B
import { ISagaRegistration } from "./Contracts"; import { SagaMiddleware } from "redux-saga"; import { IItemManager } from "redux-dynamic-modules-core"; /** * Creates saga items which can be used to start and stop sagas dynamically */ export declare function getSagaManager(sagaMiddleware: SagaMiddleware<any>): IItemManager<ISagaRegistration<any>>;