15 lines
230 B
TypeScript
15 lines
230 B
TypeScript
/**
|
|
* 消息上下文类型定义
|
|
*/
|
|
|
|
export type MsgContext = {
|
|
From: string;
|
|
Body: string;
|
|
AccountId: string;
|
|
Provider: string;
|
|
Surface: string;
|
|
SessionKey: string;
|
|
To: string;
|
|
ChatType: "direct" | "group";
|
|
};
|