homebridge-config-ui-x
Version:
A web based management, configuration and control platform for Homebridge
9 lines (8 loc) • 379 B
TypeScript
import { SocketEventsHost } from './interfaces';
export declare class SocketsContainer {
private readonly socketEventHosts;
getAllSocketEventHosts(): Map<string | RegExp, SocketEventsHost>;
getSocketEventsHostByPort(port: number): SocketEventsHost;
addSocketEventsHost(namespace: string | RegExp, port: number, host: SocketEventsHost): void;
clear(): void;
}