UNPKG

sendingnetwork-bot-sdk

Version:
16 lines (15 loc) 403 B
/** * Represents the different kinds of events a bot/appservice might see. * @category SDN events */ export declare enum EventKind { /** * A room event. This could be a message event or a state event, and is associated with * a room. */ RoomEvent = "room", /** * An ephemeral event, such as typing notifications or presence. */ EphemeralEvent = "ephemeral" }