@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
6 lines (5 loc) • 351 B
TypeScript
import type { IGroupVideoConference, IVideoConference } from '../videoConferences/IVideoConference';
export type VideoConfData = Pick<IVideoConference, '_id' | 'type' | 'rid' | 'createdBy' | 'providerData'> & {
title?: IGroupVideoConference['title'];
};
export type VideoConfDataExtended = VideoConfData & Required<Pick<IVideoConference, 'url'>>;