Module

RxJS.Subscriber

Package
purescript-rxps
Repository
LukaJCB/purescript-rxps

#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 }