17 lines
520 B
TypeScript
17 lines
520 B
TypeScript
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<void>;
|
|
stop(): Promise<void>;
|
|
}
|