5 lines
99 B
TypeScript
5 lines
99 B
TypeScript
// 聊天消息类型枚举(暂时只支持文本)
|
|
export type ChatMessageType =
|
|
| 'text';
|
|
|
// 聊天消息类型枚举(暂时只支持文本)
|
|
export type ChatMessageType =
|
|
| 'text';
|
|
|