capacitor-jitsi-meet
Version:
This plugin is used to make video calls using Jitsi video platform (https://meet.jit.si) on iOS and Android using Capacitor.
21 lines (20 loc) • 595 B
TypeScript
import { WebPlugin } from '@capacitor/core';
import { JitsiPlugin } from './definitions';
export declare class JitsiWeb extends WebPlugin implements JitsiPlugin {
constructor();
joinConference(options: {
roomName: string;
url: string;
channelLastN: string;
startWithAudioMuted: boolean;
startWithVideoMuted: boolean;
}): Promise<{
roomName: string;
url: string;
channelLastN: string;
startWithAudioMuted: boolean;
startWithVideoMuted: boolean;
}>;
}
declare const Jitsi: JitsiWeb;
export { Jitsi };