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) • 460 B
TypeScript
import { PluginProvidedUiItemDescriptor } from '../base';
import { PluginButtonStyleProps } from '../common/button';
/**
* Interface for a generic item for presentation toolbar.
*/
export interface PresentationToolbarInterface extends PluginProvidedUiItemDescriptor {
}
export interface PresentationToolbarButtonProps extends PluginButtonStyleProps {
id?: string;
label: string;
tooltip: string;
dataTest?: string;
onClick: () => void;
}