import { Tenant } from 'src/types/tenant'; import { Subjects } from '../subjects'; import { LiveType } from '../../types/liveType'; export interface ViewerLeftEvent { subject: Subjects.ViewerLeft; data: { tenant: Tenant.PrivateShow; liveId: string; streamerId: string; viewerId: string; liveType: LiveType; }; }