n8n-nodes-agentic-hub
Version:
n8n community node for Agentic Hub API integration - Unified node with all resources (projects, workflows, agents, content, conversations, messages, files)
11 lines (10 loc) • 384 B
TypeScript
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
declare module 'n8n-workflow' {
interface INodeTypeDescription {
usableAsTool?: boolean;
}
}
export declare class AgenticHub implements INodeType {
description: INodeTypeDescription;
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}