import type { Server as HttpServer } from "node:http"; import type { Server as IOServer } from "socket.io"; import type { IRealtimeAuthenticator } from "./realtime-authenticator.interface"; import type { IRealtimeHandlerRegistry } from "./realtime-handler-registry"; export type IRealtimeServerOptions = { httpServer: HttpServer; io: IOServer; authenticator: IRealtimeAuthenticator; registry: IRealtimeHandlerRegistry; }; export interface IRealtimeServer { start(): Promise; stop(): Promise; }