import { WebSocketHandler } from '../base/websocket'; type ServerProperties = { port: number; locale?: string; i18nPath?: string; middlewaresPath?: string; routesPath?: string; viewEngine?: string; viewsPath?: string; wsHandlers?: { [url: string]: WebSocketHandler; }; options?: { [key: string]: any; }; }; export { ServerProperties };