lml-main
Version:
This is now a mono repository published into many standalone packages.
14 lines (11 loc) • 394 B
text/typescript
import { combineEpics, Epic } from 'redux-observable'
import { connectToPusher, subscribeToChannel } from './connect'
import { pusherHealthcheck } from './healthcheck'
import { subscribeToPings } from './couriers'
import { RootState } from '../reducers'
export const cosmoPusherEpics = combineEpics(
connectToPusher,
subscribeToChannel,
subscribeToPings,
pusherHealthcheck,
)