Ver código fonte

chore: update

wxyyxc1992 5 anos atrás
pai
commit
d0dfd704ba
1 arquivos alterados com 15 adições e 0 exclusões
  1. 15
    0
      packages/cts-api/src/messages.ts

+ 15
- 0
packages/cts-api/src/messages.ts Ver arquivo

@@ -22,3 +22,18 @@ export interface ChatroomMsg {
22 22
 
23 23
   authority?: number;
24 24
 }
25
+
26
+export interface ChatMsp {
27
+  from: string;
28
+  type: 'room';
29
+  to: string;
30
+  msg: {
31
+    type: 'cmd' | 'text' | 'image';
32
+    command?: string;
33
+    action?: string;
34
+    message?: string;
35
+    msg_id?: string;
36
+  };
37
+  msg_id?: string;
38
+  ext?: Record<string, string>;
39
+}