UNPKG

@push.rocks/smartsocket

Version:

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

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