UNPKG

@izzai/n8n-nodes-izzone

Version:

n8n custom node for izz.ONE

14 lines (13 loc) 598 B
import { type IExecuteFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription, type NodeExecutionWithMetadata } from 'n8n-workflow'; import { getAgents, getDatasources, getLlms } from '../utils'; export declare class IzzOne implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getAgents: typeof getAgents; getDatasources: typeof getDatasources; getLlms: typeof getLlms; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][] | NodeExecutionWithMetadata[][]>; }