n8n-nodes-tulip
Version:
n8n nodes for sending data to the Tulip API
10 lines (9 loc) • 377 B
TypeScript
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[][]>;
}