capacitor-jitsi-meet
Version:
This Ionic Capacitor plugin is created to make video calls through the free, open-sourced Jitsi video platform (https://meet.jit.si) on iOS and Android.
32 lines (31 loc) • 946 B
TypeScript
import { WebPlugin } from '@capacitor/core';
import { JitsiPlugin } from './definitions';
export declare class JitsiWeb extends WebPlugin implements JitsiPlugin {
joinConference(options: {
roomName: string;
url: string;
token?: string;
channelLastN?: string;
displayName?: string;
subject?: string;
email?: string;
avatarURL?: string;
startWithAudioMuted?: boolean;
startWithVideoMuted?: boolean;
chatEnabled?: boolean;
inviteEnabled?: boolean;
callIntegrationEnabled?: boolean;
recordingEnabled?: boolean;
liveStreamingEnabled?: boolean;
screenSharingEnabled?: boolean;
featureFlags?: any;
configOverrides?: any;
}): Promise<{
success?: boolean;
}>;
leaveConference(options?: {}): Promise<{
success?: boolean;
}>;
}
declare const Jitsi: JitsiWeb;
export { Jitsi };