import { Tenant } from 'src/types/tenant'; import { Subjects } from '../subjects'; export interface GiftSentEvent { subject: Subjects.GiftSent; data: { tenant: Tenant.PrivateShow; liveId: string; sessionId: string; streamerId: string; streamerNickName: string; viewerId: string; viewerNickName: string; giftId: string; giftName: string; value: string; }; }