/** * 音视频通话请求模型 */ interface VideoCall { chatId: string fromId?: string peerId?: string timestamp: number showVideo?: boolean type: string messageType?: string } export default VideoCall