import { ParticipantId } from './Participant'; export interface IStartStreamData { movieId: string | null; name: string | null; privacy: 'PUBLIC' | 'FRIENDS' | 'DIRECT_LINK'; groupId: string | null; roomId: number | null; streamMovie: boolean; } export interface IStopStreamData { roomId: number | null; remove?: boolean; } export interface IPublishStreamData { roomId: number | null; } export interface IRecordConfData { king?: ParticipantId; pawns?: ParticipantId[]; hideParticipantCount: boolean; roomId: number | null; }