@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
17 lines (15 loc) • 549 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UserType = void 0;
var UserType;
(function (UserType) {
/** A user type for Rocket.Chat apps. */
UserType["APP"] = "app";
/** The user is a regular user of the system. */
UserType["USER"] = "user";
/** A special user type for bots. */
UserType["BOT"] = "bot";
/** This usually represents a livechat guest. */
UserType["UNKNOWN"] = "unknown";
})(UserType || (exports.UserType = UserType = {}));
//# sourceMappingURL=UserType.js.map
;