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.
15 lines (14 loc) • 411 B
TypeScript
export declare const sidekickOptionsContainer: {
/**
* Opens the sidekick container automatically.
*
* @deprecated Use the new {@link sidekickArea} object instead.
*/
open: () => void;
/**
* Closes the sidekick container (and sidebard content panel) automatically.
*
* @deprecated Use the new {@link sidekickArea} object instead.
*/
close: () => void;
};