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) 397 B
import { SendNotificationCommandArguments } from './types'; export declare const notification: { /** * Sends notification to be rendered in the front-end. */ send: (information: SendNotificationCommandArguments) => void; /** * Decides if notifications stop being displayed. */ setEnabledDisplayNotifications: (isNotificationDisplayEnabled: boolean) => void; };