import * as SocketIO from 'socket.io-client'; import { DyFM_Log, second } from '@futdevpro/fsm-dynamo'; import { DyFM_SocketClient_Params } from '@futdevpro/fsm-dynamo/socket'; /** * socket handling and clarification is under development */ export class DyNTS_SocketClientService_Params extends DyFM_SocketClient_Params { override address?: string = 'ws://localhost'; constructor( set: DyNTS_SocketClientService_Params ) { super(set); DyFM_Log.H_info( `DyNTS_SocketClientService_Params (test this with custom address!) "${this.address}"` ); } }