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.
12 lines (11 loc) • 458 B
TypeScript
import { SetDisplayActionBarCommandArguments } from './types';
export declare const actionsBar: {
/**
* Decides whether to display the actions bar
*
* @param setSpeakerLevelCommandArgumentsthe volume to which the core will set the speaker
* level.
* Refer to {@link SetDisplayActionBarCommandArguments} to understand the argument structure.
*/
setDisplayActionBar: (arg: SetDisplayActionBarCommandArguments) => void;
};