UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

12 lines (11 loc) 386 B
import type { Application } from 'express'; import type { Server as HttpServer } from 'http'; import { ChatService } from './chat-service'; export declare class ChatServer { private readonly chatService; private readonly wsServer; constructor(chatService: ChatService); setup(server: HttpServer, app: Application): void; private attachToApp; shutdown(): void; }