15 lines
324 B
TypeScript
15 lines
324 B
TypeScript
import type { FeishuAccountConfig, FeishuConfig } from "../config/types.feishu.js";
|
|
|
|
export type { FeishuConfig, FeishuAccountConfig };
|
|
|
|
export type FeishuContext = {
|
|
appId: string;
|
|
chatId?: string;
|
|
openId?: string;
|
|
userId?: string;
|
|
messageId?: string;
|
|
messageType?: string;
|
|
text?: string;
|
|
raw?: unknown;
|
|
};
|