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.

18 lines (17 loc) 561 B
import { PluginProvidedUiItemDescriptor } from '../base'; /** * Camera Settings Dropdown Item - The general Camera settings extensible area * * @remarks * To make this dropdown appear, the user needs to enter with webcam. * This will make a small downward arrow appear in the camera icon (the chevron). */ export interface CameraSettingsDropdownInterface extends PluginProvidedUiItemDescriptor { } export interface CameraSettingsDropdownOptionProps { id?: string; label: string; icon: string; dataTest?: string; onClick: () => void; }