Fix TTS module initialization and dependency issues. Update module IDs for consistency, improve circular dependency detection, and fix UI Controller event handling.
This commit is contained in:
Vendored
+10
@@ -0,0 +1,10 @@
|
||||
/**
|
||||
* Test Server for AI Interactive Fiction
|
||||
* Simplified version that sends test paragraphs instead of using LLM
|
||||
*/
|
||||
import http from 'http';
|
||||
import { Server as SocketIOServer } from 'socket.io';
|
||||
declare const app: import("express-serve-static-core").Express;
|
||||
declare const server: http.Server<typeof http.IncomingMessage, typeof http.ServerResponse>;
|
||||
declare const io: SocketIOServer<import("socket.io").DefaultEventsMap, import("socket.io").DefaultEventsMap, import("socket.io").DefaultEventsMap, any>;
|
||||
export { app, server, io };
|
||||
Reference in New Issue
Block a user