UNPKG

n8n-nodes-feishu-lark

Version:

n8n custom nodes for n8n to interact with Feishu/Lark, including Lark Bot, Lark MCP, and Lark Trigger.

9 lines (8 loc) 252 B
export interface Cache { set: (key: string | Symbol, value: any, expire?: number, options?: { namespace?: string; }) => Promise<boolean>; get: (key: string | Symbol, options?: { namespace?: string; }) => Promise<any>; }