UNPKG

@mxlabs/okxnotify

Version:

OKX notification package with Feishu, Cloudflare Workers, and Gemini AI agent integration - Complete bundle

16 lines (15 loc) 437 B
/** * 基于飞书自定义机器人发送消息 */ export declare const sendFeishuNotification: (webhookToken: string, message: string) => Promise<any>; /** * 飞书富文本消息 * @param params 参数 * @param params.title 标题 * @param params.messages 消息列表 * @returns */ export declare const feishuRicherNotification: (webhookToken: string, params: { title: string; messages: string[]; }) => Promise<any>;