UNPKG

@traien/n8n-nodes-espocrm

Version:
13 lines (12 loc) 639 B
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow'; export declare class EspoCRM implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getEntityTypes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getEntityFields(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getEnumOptions(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }