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.

19 lines 579 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.presentationArea = void 0; var enums_1 = require("./enums"); exports.presentationArea = { /** * Opens the presentation area content automatically. */ open: function () { window.dispatchEvent(new Event(enums_1.PresentationAreaEnum.OPEN)); }, /** * Closes the presentation area content automatically. */ close: function () { window.dispatchEvent(new Event(enums_1.PresentationAreaEnum.CLOSE)); }, }; //# sourceMappingURL=commands.js.map