Module

Wechaty.Room

Package
purescript-wechaty
Repository
Lupino/purescript-wechaty

#Room Source

data Room :: Type

#RoomT Source

type RoomT m = ReaderT Room m

#runRoomT Source

runRoomT :: forall m a. Room -> RoomT m a -> m a

#find Source

find :: forall eff. String -> Aff eff (Maybe Room)

#say Source

say :: forall eff m a. MonadAff (wechaty :: WECHATY | eff) m => a -> RoomT m Unit

#sayTo Source

sayTo :: forall eff m a. MonadAff (wechaty :: WECHATY | eff) m => Contact -> a -> RoomT m Unit

#getRoomTopic Source

#roomTopic Source

roomTopic :: forall m. Monad m => RoomT m String

#findAll Source

findAll :: forall eff. String -> Aff eff (Array Room)

Re-exports from Wechaty.Types

#WECHATY Source

data WECHATY :: Effect