@nswitfy/jitsi-meet
Version:
A plugin which uses jitsi open source video conference SDK for both platforms, Android and IOS;
18 lines (17 loc) • 712 B
TypeScript
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 _jitsiView;
constructor(serverURL?: string);
startMeeting(options: JitsiMeetConferenceOptions): void;
private _buildObjectOptions;
on(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void;
addEventListener(eventNames: string, callback: (data: EventData) => void, thisArg?: any): void;
}