import { SocketEventType } from './enums/SocketEventType'; import { Server, Socket } from 'socket.io'; export interface SocketEventContext { socketIo: Server; socket: Socket; eventType: SocketEventType; eventName?: string; messageArgs?: any[]; nspParams?: Record; ack?: Function | null; }