import { LegacySocketConfig } from '../Types' import { DEFAULT_LEGACY_CONNECTION_CONFIG } from '../Defaults' import _makeLegacySocket from './groups' // export the last socket layer const makeLegacySocket = (config: Partial) => ( _makeLegacySocket({ ...DEFAULT_LEGACY_CONNECTION_CONFIG, ...config }) ) export default makeLegacySocket