n8n-nodes-agentic-hub
Version:
n8n community node for Agentic Hub API integration - Send messages to conversational AI workflows
11 lines (10 loc) • 391 B
TypeScript
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
declare module 'n8n-workflow' {
interface INodeTypeDescription {
usableAsTool?: boolean;
}
}
export declare class AgenticHubMessage implements INodeType {
description: INodeTypeDescription;
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}