import { Tenant } from 'src/types/tenant'; import { Subjects } from '../subjects'; import { LiveType } from '../../types/liveType'; export interface LiveStartedEvent { subject: Subjects.LiveStarted; data: { tenant: Tenant.PrivateShow; liveId: string; streamerId: string; nickName: string; profilePhoto: string; liveType: LiveType.Free; roomName: string; startedAt: string; }; }