UNPKG

@push.rocks/smartsocket

Version:

Provides easy and secure websocket communication mechanisms, including server and client implementation, function call routing, connection management, and tagging.

8 lines (7 loc) 121 B
export interface ITag<T = any> { id: string; payload: T; } export type TTagStore = { [key: string]: ITag; };