UNPKG

393 BTypeScriptView Raw
1import { Action } from 'redux';
2import { Observable } from 'rxjs';
3import { StateObservable } from './StateObservable';
4export declare interface Epic<Input extends Action = any, Output extends Input = Input, State = any, Dependencies = any> {
5 (action$: Observable<Input>, state$: StateObservable<State>, dependencies: Dependencies): Observable<Output>;
6}
7//# sourceMappingURL=epic.d.ts.map
\No newline at end of file