UNPKG

@rocket.chat/apps-engine

Version:

The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.

21 lines (19 loc) 800 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SettingType = void 0; var SettingType; (function (SettingType) { SettingType["BOOLEAN"] = "boolean"; SettingType["CODE"] = "code"; SettingType["COLOR"] = "color"; SettingType["FONT"] = "font"; SettingType["NUMBER"] = "int"; SettingType["SELECT"] = "select"; SettingType["STRING"] = "string"; SettingType["MULTI_SELECT"] = "multiSelect"; // Renders an input of type 'password' in the form. IMPORTANT - the value will NOT be encrypted // it will be treated as a password just on the screen SettingType["PASSWORD"] = "password"; SettingType["ROOM_PICK"] = "roomPick"; })(SettingType || (exports.SettingType = SettingType = {})); //# sourceMappingURL=SettingType.js.map