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) • 522 B
TypeScript
import { PluginProvidedUiItemDescriptor } from '../base';
/**
* Presentation Dropdown Item - The general presentation dropdown extensible area item
*
* @remarks
* This dropdown is located when clicking the three dots on the top left corner
* of the presentation area.
*/
export interface PresentationDropdownInterface extends PluginProvidedUiItemDescriptor {
}
export interface PresentationDropdownOptionProps {
id?: string;
label: string;
icon: string;
onClick: () => void;
dataTest?: string;
}