UNPKG

@rocket.chat/apps-engine

Version:

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

15 lines (14 loc) 432 B
import type { VideoConference } from '../videoConferences/IVideoConference'; /** * This accessor provides methods for accessing * video conferences in a read-only-fashion. */ export interface IVideoConferenceRead { /** * Gets a video conference by an id. * * @param id the id of the video conference * @returns the video conference */ getById(id: string): Promise<VideoConference | undefined>; }