n8n
Version:
n8n Workflow Automation Tool
12 lines (11 loc) • 386 B
TypeScript
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;
}