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) • 468 B
TypeScript
import { SetAwayStatusCommandArguments } from './types';
export declare const userStatus: {
/**
* Sets the away status of the user to a certain status.
*
* @param setAwayStatusCommandArguments the status to which the core will set the user
* status.
* Refer to {@link SetAwayStatusCommandArguments} to understand the argument structure.
*/
setAwayStatus: (setAwayStatusCommandArguments: SetAwayStatusCommandArguments) => void;
};