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.

26 lines 818 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AppsGalleryEntry = void 0; var enums_1 = require("./enums"); var AppsGalleryEntry = /** @class */ (function () { function AppsGalleryEntry(_a) { var id = _a.id, name = _a.name, icon = _a.icon, onClick = _a.onClick; this.id = ''; this.name = ''; this.type = enums_1.AppsGalleryType.ENTRY; this.icon = ''; if (id) { this.id = id; } this.name = name; this.icon = icon; this.onClick = onClick; } AppsGalleryEntry.prototype.setItemId = function (id) { this.id = id; }; return AppsGalleryEntry; }()); exports.AppsGalleryEntry = AppsGalleryEntry; exports.default = AppsGalleryEntry; //# sourceMappingURL=component.js.map