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.
14 lines (13 loc) • 594 B
TypeScript
import { ChangeEnforcedLayoutTypeEnum, EnforcedLayoutTypeEnum } from './enums';
export interface ChangeEnforcedLayoutCommandArguments {
layoutType: ChangeEnforcedLayoutTypeEnum;
}
export interface SetEnforcedLayoutCommandArguments {
layoutType: EnforcedLayoutTypeEnum;
}
export type ChangeEnforcedLayout = (layoutType: ChangeEnforcedLayoutTypeEnum) => void;
export type SetEnforcedLayoutFunction = (layoutType: EnforcedLayoutTypeEnum) => void;
export interface UiCommandsLayoutObject {
changeEnforcedLayout: ChangeEnforcedLayout;
setEnforcedLayout: SetEnforcedLayoutFunction;
}