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.

23 lines 776 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.sidekickOptionsContainer = void 0; var enums_1 = require("./enums"); exports.sidekickOptionsContainer = { /** * Opens the sidekick container automatically. * * @deprecated Use the new {@link sidekickArea} object instead. */ open: function () { window.dispatchEvent(new Event(enums_1.SidekickOptionsContainerEnum.OPEN)); }, /** * Closes the sidekick container (and sidebard content panel) automatically. * * @deprecated Use the new {@link sidekickArea} object instead. */ close: function () { window.dispatchEvent(new Event(enums_1.SidekickOptionsContainerEnum.CLOSE)); }, }; //# sourceMappingURL=commands.js.map