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