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) • 823 B
TypeScript
import { FillChatFormCommandArguments, OpenChatFormCommandArguments } from './types';
export declare const form: {
/**
* Opens the chat panel automatically. If chatId is provided, opens that specific chat.
*
* @param openChatCommandArgument Optional chatId to open a specific chat panel.
* Refer to {@link OpenChatFormCommandArguments} to understand the argument structure.
*/
open: (openChatCommandArgument?: OpenChatFormCommandArguments) => void;
/**
* Fills in the chat input when called.
*
* @param FillChatFormCommandArguments the text with which the method will fill the chat input.
* Refer to {@link FillChatFormCommandArguments} to understand the argument structure.
*/
fill: (fillChatFormCommandArguments: FillChatFormCommandArguments) => void;
};