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.

13 lines 515 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.serverCommands = void 0; var commands_1 = require("./caption/commands"); var commands_2 = require("./chat/commands"); var commands_3 = require("./presentation/commands"); var serverCommands = function (pluginName) { return ({ caption: commands_1.caption, chat: (0, commands_2.chat)(pluginName), presentation: commands_3.presentation, }); }; exports.serverCommands = serverCommands; //# sourceMappingURL=commands.js.map