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.

12 lines (11 loc) 546 B
import { SetExternalVideoVolumeCommandArguments } from './types'; export declare const volume: { /** * Sets the volume of the external video to a certain level. Needs to be a value between 0 and 1. * * @param setExternalVideoVolumeCommandArguments the volume to which the core will set in the * external video. * Refer to {@link SetExternalVideoVolumeCommandArguments} to understand the argument structure. */ set: (setExternalVideoVolumeCommandArguments: SetExternalVideoVolumeCommandArguments) => void; };