Type alias SocketEventHandler<TState>

SocketEventHandler<TState>: {
    eventClass: Instantiable<StateEvent<TState>>;
    handler: Constructable<((state: TState) => Awaitable<void>)>;
}

Type Parameters

Type declaration