UNPKG

epix

Version:

Epics without redux-observable

6 lines (5 loc) 279 B
import { Observable } from 'rxjs'; import { ActionLike } from './ActionLike.js'; export declare interface Epic<Input extends ActionLike = any, Output extends Input = Input, Dependencies = any> { (action$: Observable<Input>, dependencies: Dependencies): Observable<Output>; }