UNPKG

n8n-nodes-feishu-lark

Version:

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

12 lines (11 loc) 513 B
import { INodePropertyOptions } from 'n8n-workflow/dist/Interfaces'; import { IResource, ResourceOperation } from '../type/IResource'; import { INodeProperties } from 'n8n-workflow'; declare class ResourceBuilder { resources: IResource[]; addResource(resource: INodePropertyOptions): void; addOperation(resourceName: string, operation: ResourceOperation): void; build(): INodeProperties[]; getCall(resourceName: string, operateName: string): Function | null; } export default ResourceBuilder;