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.

17 lines (16 loc) 544 B
import { PluginProvidedUiItemDescriptor } from '../base'; /** * Audio Settings Dropdown Item - The general Audio settings extensible area * * @remarks * To make this dropdown appear, the user needs to enter with audio, either listen only * or microphone. This will make a small downward arrow appear (chevron). */ export interface AudioSettingsDropdownInterface extends PluginProvidedUiItemDescriptor { } export interface AudioSettingsDropdownOptionProps { id?: string; label: string; icon: string; onClick: () => void; }