UNPKG

@push.rocks/smartsocket

Version:

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

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