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) 441 B
import { SetDisplayActionBarCommandArguments } from './types'; export declare const actionsBar: { /** * Decides whether to display the actions bar * * @param arg object containing the `displayActionBar` which is a boolean * level. * Refer to {@link SetDisplayActionBarCommandArguments} to understand the argument structure. */ setDisplayActionBar: (arg: SetDisplayActionBarCommandArguments) => void; };