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.

18 lines (17 loc) 564 B
import { EnforcedLayoutTypeEnum } from './enums'; import { ChangeEnforcedLayout } from './types'; export declare const layout: { /** * @deprecated Use {@link layout.setEnforcedLayout} instead * Changes the enforced layout * * @param layoutType is one of the options described by the enum */ changeEnforcedLayout: ChangeEnforcedLayout; /** * Sets the enforced layout * * @param layoutType is one of the options described by the enum */ setEnforcedLayout: (layoutType: EnforcedLayoutTypeEnum) => void; };