@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
11 lines • 368 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.RoomType = void 0;
var RoomType;
(function (RoomType) {
RoomType["CHANNEL"] = "c";
RoomType["PRIVATE_GROUP"] = "p";
RoomType["DIRECT_MESSAGE"] = "d";
RoomType["LIVE_CHAT"] = "l";
})(RoomType || (exports.RoomType = RoomType = {}));
//# sourceMappingURL=RoomType.js.map
;