Initial commit
This commit is contained in:
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
/**
|
||||
* AI Interactive Fiction - Web Server
|
||||
* Serves the web UI and handles WebSocket communication
|
||||
*/
|
||||
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 declare function startServer(initialPort: number, range: number): Promise<void>;
|
||||
export { app, server, io };
|
||||
Reference in New Issue
Block a user