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) • 480 B
TypeScript
declare global {
interface PluginRegistry {
Jitsi?: JitsiPlugin;
}
}
export interface JitsiPlugin {
joinConference(options: {
roomName: string;
url: string;
channelLastN: string;
startWithAudioMuted: boolean;
startWithVideoMuted: boolean;
}): Promise<{
roomName: string;
url: string;
channelLastN: string;
startWithAudioMuted: boolean;
startWithVideoMuted: boolean;
}>;
}