UNPKG

n8n-nodes-feishu-lark

Version:

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

16 lines (15 loc) 741 B
import { IDataObject, IExecuteFunctions } from 'n8n-workflow'; declare class NodeUtils { static getNodeFixedCollection(data: IDataObject, collectionName: string): IDataObject[]; static getNodeFixedCollectionList(data: IDataObject, collectionName: string, propertyName: string): any[]; static buildUploadFileData(this: IExecuteFunctions, inputDataFieldName: string, index?: number): Promise<{ value: Buffer<ArrayBufferLike>; options: { filename: string | undefined; filelength: string | undefined; contentType: string; }; }>; static getNodeJsonData(data: IExecuteFunctions, propertyName: string, index: number, failValue?: any): any; } export default NodeUtils;