| 1234567891011121314151617 |
- /**
- * 音视频通话结果模型
- */
- interface VideoCallMessage {
- chatId: string
- fromId?: string
- timestamp: number
- type: string
- messageType: string
- //是否是视频通话
- video: boolean
- //通话结果 是否接通
- result: boolean
- //通话时长
- duration?: number
- }
- export default VideoCallMessage
|