VideoCall.ts 221 B

12345678910111213
  1. /**
  2. * 音视频通话请求模型
  3. */
  4. interface VideoCall {
  5. chatId: string
  6. fromId?: string
  7. peerId?: string
  8. timestamp: number
  9. showVideo?: boolean
  10. type: string
  11. messageType?: string
  12. }
  13. export default VideoCall