n8n-nodes-feishu-lark
Version:
n8n custom nodes for n8n to interact with Feishu/Lark, including Lark Bot, Lark MCP, and Lark Trigger.
13 lines (12 loc) • 525 B
TypeScript
import { INodePropertyOptions, IDataObject, IExecuteFunctions, INodeProperties, INodeExecutionData } from 'n8n-workflow';
export type ResourceOperation = INodePropertyOptions & {
options: INodeProperties[];
call?: (this: IExecuteFunctions, index: number) => Promise<IDataObject | IDataObject[] | INodeExecutionData[]>;
order?: number;
};
export type ResourceOptions = INodePropertyOptions & {
order?: number;
};
export interface IResource extends INodePropertyOptions {
operations: ResourceOperation[];
}