UNPKG

n8n-nodes-gohighlevel

Version:
22 lines (21 loc) 811 B
import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class GoHighLevelV2 implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getCustomFields(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; getOpportunityCustomFields(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; getContactCustomFields(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }