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.
18 lines (17 loc) • 694 B
TypeScript
export declare enum LayoutEnum {
CHANGE_ENFORCED_LAYOUT = "CHANGE_ENFORCED_LAYOUT",
SET_ENFORCED_LAYOUT = "SET_ENFORCED_LAYOUT"
}
export declare enum EnforcedLayoutTypeEnum {
PLUGINS_ONLY = "PLUGINS_ONLY",
CUSTOM_LAYOUT = "CUSTOM_LAYOUT",
SMART_LAYOUT = "SMART_LAYOUT",
PRESENTATION_FOCUS = "PRESENTATION_FOCUS",
VIDEO_FOCUS = "VIDEO_FOCUS",
CAMERAS_ONLY = "CAMERAS_ONLY",
PRESENTATION_ONLY = "PRESENTATION_ONLY",
PARTICIPANTS_AND_CHAT_ONLY = "PARTICIPANTS_AND_CHAT_ONLY",
MEDIA_ONLY = "MEDIA_ONLY"
}
export declare const ChangeEnforcedLayoutTypeEnum: typeof EnforcedLayoutTypeEnum;
export type ChangeEnforcedLayoutTypeEnum = EnforcedLayoutTypeEnum;