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.
17 lines (16 loc) • 475 B
TypeScript
import { PluginProvidedUiItemDescriptor } from '../base';
import { PluginIconType } from '../common/icon';
/**
* Interface for a generic item for the action button dropdown.
*/
export interface ActionButtonDropdownInterface extends PluginProvidedUiItemDescriptor {
}
export interface ActionButtonDropdownOptionProps {
id?: string;
label: string;
icon: PluginIconType;
tooltip: string;
dataTest?: string;
allowed: boolean;
onClick: () => void;
}