Files
Discreetly/packages/protocol-interfaces/src/main.js

11 lines
333 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.RoomType = void 0;
var RoomType;
(function (RoomType) {
RoomType["PUBLIC"] = "public";
RoomType["GATED"] = "gated";
RoomType["PRIVATE"] = "private";
RoomType["SECURE"] = "secure";
})(RoomType || (exports.RoomType = RoomType = {}));