소스 검색

add image

Paul 4 년 전
부모
커밋
ca27b9dc8a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      packages/cts-api/src/protocol/MsgBase.ts

+ 1
- 1
packages/cts-api/src/protocol/MsgBase.ts 파일 보기

@@ -1,6 +1,6 @@
1 1
 import { uuid } from '../utils/uuid';
2 2
 
3
-export type MsgType = 'text' | 'audio' | 'video' | 'cmd' | 'attachment';
3
+export type MsgType = 'text' | 'audio' | 'video' | 'image' |'cmd' | 'attachment';
4 4
 
5 5
 export type ChatType = 'chat' | 'room' | 'group' | 'push';
6 6