/// import { Server } from "http"; import { AppMasterMiddlewareConfig, AppMasterRouterConstructor } from "./am-middleware"; import { AppMasterSocketsConfig, AppMasterSockets } from "./am-sockets"; import { AppMasterRouter } from "./am-app"; export declare type AppMasterServerConfig = Partial<{ middleware: AppMasterMiddlewareConfig; main: AppMasterRouterConstructor; sockets: AppMasterSocketsConfig; }>; export declare type AppMasterServerType = { app: AppMasterRouter; server: Server; io: AppMasterSockets; };