n8n-nodes-agent-chat-interface
Version:
N8N custom node that serves a React chat interface as static content
7 lines (6 loc) • 316 B
TypeScript
import { INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from 'n8n-workflow';
export declare class ChatInterfaceWebhookNode implements INodeType {
description: INodeTypeDescription;
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
private serveStaticContent;
}