@pixelinfinito/n8n-nodes-chatwoot
Version:
n8n community node for Chatwoot API integration
10 lines (9 loc) • 416 B
TypeScript
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Chatwoot implements INodeType {
description: INodeTypeDescription;
loadOptions(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string | number;
}[]>;
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}