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.
28 lines (27 loc) • 765 B
TypeScript
export interface 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;
}>;
}