@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
14 lines (13 loc) • 421 B
TypeScript
import type { IVideoConfProvider } from '../videoConfProviders';
/**
* This accessor provides methods for adding videoconf providers.
* It is provided during the initialization of your App
*/
export interface IVideoConfProvidersExtend {
/**
* Adds a videoconf provider
*
* @param provider the provider information
*/
provideVideoConfProvider(provider: IVideoConfProvider): Promise<void>;
}