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) • 886 B
TypeScript
import { SetSelfViewDisableAllDevicesCommandArguments, SetSelfViewDisableCommandArguments } from './types';
export declare const camera: {
/**
* Sets the self-view camera disabled/enabled for all cameras.
*
* @param setSelfViewDisableAllDevicesCommandArguments: object with a
* boolean that tells whether to enable or not the self-view camera for all devices
*/
setSelfViewDisableAllDevices: (setSelfViewDisableAllDevicesCommandArguments: SetSelfViewDisableAllDevicesCommandArguments) => void;
/**
* Sets the self-view camera disabled/enabled for specific camera.
*
* @param setSelfViewDisableCommandArguments: object with a
* boolean that tells whether to enable or not the self-view camera for specific device
*/
setSelfViewDisable: (setSelfViewDisableCommandArguments: SetSelfViewDisableCommandArguments) => void;
};