@mxlabs/okxnotify
Version:
OKX notification package with Feishu, Cloudflare Workers, and Gemini AI agent integration - Complete bundle
17 lines (16 loc) • 394 B
TypeScript
/**
* 构建一个路由,根据不同的消息类型,调用不同的处理函数
*/
/**
* 消息类型
* 'text' | 'image' | 'file' | 'audio' | 'video' | 'sticker' | 'interactive'
*/
export declare enum FEISHU_MESSAGE_TYPE {
TEXT = "text",
IMAGE = "image",
FILE = "file",
AUDIO = "audio",
VIDEO = "video",
STICKER = "sticker",
INTERACTIVE = "interactive"
}