UNPKG

@nswitfy/jitsi-meet

Version:

A plugin which uses jitsi open source video conference SDK for both platforms, Android and IOS;

24 lines (23 loc) 926 B
import { EventData, Observable } from '@nativescript/core'; import { JitsiMeetConferenceOptions } from './index'; export { JitsiMeetConferenceOptions }; export declare class JitsiMeet extends Observable { events: Array<{ eventNames: string; callback: (data: EventData) => void; thisArg?: any; }>; serverURL: string; private _lastViewController; private _currentViewController; private _jitsiView; private _jitsiDelegate; constructor(serverURL?: string); startMeeting(options: JitsiMeetConferenceOptions): void; private _isPresentingModally; stopMeeting(): void; private _callEventListeners; on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void; addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void; get lastScanViewController(): UIViewController; }