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