export interface ConnectionProps { host: string; port: number; }; export const ConnectionPropsDefault: ConnectionProps = { host: "localhost", port: 9400, };