UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

25 lines 1.05 kB
import { type IExecuteFunctions, type ILoadOptionsFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription } from 'n8n-workflow'; import type { Option } from './types'; export declare class MonicaCrm implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getActivityTypes(this: ILoadOptionsFunctions): Promise<{ value: string; name: string; }[]>; getTagsToAdd(this: ILoadOptionsFunctions): Promise<Option[]>; getTagsToRemove(this: ILoadOptionsFunctions): Promise<Option[]>; getContactFieldTypes(this: ILoadOptionsFunctions): Promise<{ value: string; name: string; }[]>; getGenders(this: ILoadOptionsFunctions): Promise<{ value: string; name: string; }[]>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; } //# sourceMappingURL=MonicaCrm.node.d.ts.map