n8n-nodes-feishu-lark
Version:
n8n custom nodes for n8n to interact with Feishu/Lark, including Lark Bot, Lark MCP, and Lark Trigger.
17 lines (16 loc) • 506 B
TypeScript
import { Cache } from '../interfaces';
export declare class DefaultCache implements Cache {
values: Map<string | Symbol, {
value: any;
expiredTime?: number;
}>;
constructor();
private getCacheKey;
get(key: string | Symbol, options?: {
namespace?: string;
}): Promise<any>;
set(key: string | Symbol, value: string, expiredTime?: number, options?: {
namespace?: string;
}): Promise<boolean>;
}
export declare const internalCache: DefaultCache;