n8n-nodes-close-crm
Version:
N8N community node for Close CRM integration with comprehensive lead, opportunity, task, note, and call management
12 lines (11 loc) • 556 B
TypeScript
import type { IPollFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription, INodePropertyOptions } from 'n8n-workflow';
export declare class CloseTrigger implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getLeadStatuses(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getSmartViews(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
poll(this: IPollFunctions): Promise<INodeExecutionData[][] | null>;
}