UNPKG

n8n-nodes-bitrix

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