UNPKG

@choewy/react-socket

Version:
8 lines (7 loc) 315 B
import { SocketClientOptions } from './interfaces'; import { SocketClient } from './socket.client'; export declare class SocketClientStorage { private static readonly socketClientMap; static create({ name, ...opts }: SocketClientOptions): SocketClient; static get(name?: string): SocketClient | null; }