vani-meeting-client
Version:
Vani Meeting Clinet SDK
11 lines (10 loc) • 530 B
TypeScript
import { MeetingStartRequest } from "..";
import { CommunicationHandler } from "../inter-communication-handler/CommunicationHandler";
export declare abstract class Base {
protected meetingStartRequest?: MeetingStartRequest;
protected communicationHandler?: CommunicationHandler;
constructor(_meetingStartRequest: MeetingStartRequest, _communicationHandler: CommunicationHandler);
setMeetingRequest: (_meetingStartRequest: MeetingStartRequest) => void;
protected onObjectCreated(): void;
cleanup(): void;
}