11 lines
536 B
TypeScript
11 lines
536 B
TypeScript
/**
|
|
* 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 };
|