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.

11 lines (10 loc) 440 B
import { UploadPresentationCommandArguments } from './types'; export declare const presentation: { /** * Uploads a presentation (if presenter, ignores otherwise): Image, PDF, etc. * * @param uploadPresentationCommandArguments Content which will be sent to be uploaded * as presentation - Can be base64 or url. */ upload: (uploadPresentationCommandArguments: UploadPresentationCommandArguments) => void; };