UNPKG

sendingnetwork-bot-sdk

Version:
20 lines 640 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EventKind = void 0; /** * Represents the different kinds of events a bot/appservice might see. * @category SDN events */ var EventKind; (function (EventKind) { /** * A room event. This could be a message event or a state event, and is associated with * a room. */ EventKind["RoomEvent"] = "room"; /** * An ephemeral event, such as typing notifications or presence. */ EventKind["EphemeralEvent"] = "ephemeral"; })(EventKind = exports.EventKind || (exports.EventKind = {})); //# sourceMappingURL=EventKind.js.map