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.
7 lines (6 loc) • 379 B
TypeScript
import { CustomSubscriptionArguments } from './domain/shared/custom-subscription/types';
export declare function sortedStringify(obj: {
[key: string]: any;
} | undefined): string;
export declare function makeCustomHookIdentifier(query?: string, variables?: object): string;
export declare function makeCustomHookIdentifierFromArgs(args: CustomSubscriptionArguments): string;