Hhertz/node_modules/@vector-im/matrix-bot-sdk/lib/models/events/EventKind.d.ts
2025-07-31 23:47:20 +03:00

16 lines
406 B
TypeScript

/**
* Represents the different kinds of events a bot/appservice might see.
* @category Matrix 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"
}