import { EVENT_TYPE } from '../../type/index'; /** * 信令上报原始的消息 * * @property { number } subType - 消息类型 * @property { string } content - 消息详细内容 * @property { string } requestId - 消息ID */ export interface OriginalNotification { subType: number; content: string; requestId: string; } /** * 会控互动工具相关数据, 签到等 */ export interface OriginalRealTimeNotification { count: number; events: { content: string; type: EVENT_TYPE; action: EVENT_TYPE; }[]; }