UNPKG

n8n-nodes-amocrm

Version:
11 lines (10 loc) 472 B
import { IExecuteFunctions, INodeType, INodeTypeBaseDescription, INodeTypeDescription } from 'n8n-workflow'; import * as loadOptions from './methods'; export declare class AmocrmV1 implements INodeType { description: INodeTypeDescription; constructor(baseDescription: INodeTypeBaseDescription); methods: { loadOptions: typeof loadOptions; }; execute(this: IExecuteFunctions): Promise<import("n8n-workflow").INodeExecutionData[][]>; }