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.
13 lines (12 loc) • 538 B
TypeScript
import { SetSpeakerLevelCommandArguments } from './types';
export declare const conference: {
/**
* Sets the volume of the speakers in the conference to a certain level.
* Needs to be a value between 0 and 1.
*
* @param setSpeakerLevelCommandArguments volume to which the core will set the speaker
* level.
* Refer to {@link SetSpeakerLevelCommandArguments} to understand the argument structure.
*/
setSpeakerLevel: (setSpeakerLevelCommandArguments: SetSpeakerLevelCommandArguments) => void;
};