UNPKG

@rocket.chat/apps-engine

Version:

The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.

10 lines (9 loc) 451 B
import type { IVideoConferenceRead } from '../../definition/accessors'; import type { VideoConference } from '../../definition/videoConferences'; import type { VideoConferenceBridge } from '../bridges'; export declare class VideoConferenceRead implements IVideoConferenceRead { private videoConfBridge; private appId; constructor(videoConfBridge: VideoConferenceBridge, appId: string); getById(id: string): Promise<VideoConference>; }