openclaw/extensions/feishu/src/msg-context.ts
2026-01-29 23:42:22 +08:00

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";
};