UNPKG

n8n-nodes-tulip

Version:
10 lines (9 loc) 377 B
import type { INodeTypeDescription, INodeType, IExecuteFunctions } from 'n8n-workflow'; import { loadOptions } from './methods'; export declare class Tulip implements INodeType { description: INodeTypeDescription; methods: { loadOptions: typeof loadOptions; }; execute(this: IExecuteFunctions): Promise<import("n8n-workflow").INodeExecutionData[][]>; }