vani-meeting-client
Version:
Vani Meeting Clinet SDK
10 lines (9 loc) • 454 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);
protected onObjectCreated(): void;
cleanup(): void;
}