UNPKG

bigbluebutton-html-plugin-sdk

Version:

This repository contains the SDK for developing BigBlueButton plugins. Plugins are React components that can be loaded from external sources by the BigBlueButton HTML5 client to extend its functionalities.

20 lines 902 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ActionsBarPosition = exports.ActionsBarItemType = void 0; // Action bar items types: var ActionsBarItemType; (function (ActionsBarItemType) { ActionsBarItemType["BUTTON"] = "ACTIONS_BAR_BUTTON"; ActionsBarItemType["SEPARATOR"] = "ACTIONS_BAR_SEPARATOR"; ActionsBarItemType["SELECTOR"] = "ACTIONS_BAR_SELECTOR"; ActionsBarItemType["TOGGLE_GROUP"] = "ACTIONS_BAR_TOGGLE_GROUP"; })(ActionsBarItemType || (exports.ActionsBarItemType = ActionsBarItemType = {})); /** * Enum with the position to insert the actions bar item (Separator or Button) */ var ActionsBarPosition; (function (ActionsBarPosition) { ActionsBarPosition["LEFT"] = "left"; ActionsBarPosition["RIGHT"] = "right"; })(ActionsBarPosition || (exports.ActionsBarPosition = ActionsBarPosition = {})); //# sourceMappingURL=enums.js.map