Module

RxJS.Subscriber

Package
purescript-rx-observable
Repository
LukaJCB/purescript-rx-observable

#Subscriber Source

type Subscriber a = { completed :: forall e. Unit -> Eff e Unit, error :: forall e. Error -> Eff e Unit, next :: forall e. a -> Eff e Unit }