UNPKG

@fhylabs/loom

Version:

Loom is a super-fast, lightweight, and secure real-time library for data synchronization between clients and services.

13 lines (12 loc) 290 B
export interface LoomServerOptions { host?: string; port?: number; debug?: boolean; } export declare class LoomServer { private static instance; private wss; private debug; private constructor(); static getInstance(options: LoomServerOptions): LoomServer; }