UNPKG

@push.rocks/smartsocket

Version:

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

12 lines (10 loc) 195 B
export interface IRequestAuthPayload { serverAlias: string; } export type TConnectionStatus = | 'new' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected' | 'timedOut';