UNPKG

nostr-websocket-utils

Version:

Robust WebSocket utilities for Nostr applications with automatic reconnection, supporting both ESM and CommonJS. Features channel-based messaging, heartbeat monitoring, message queueing, and comprehensive error handling with type-safe handlers.

13 lines 264 B
/** * @file Message priority definitions * @module types/priority */ /** * Message priority levels for queue management */ export declare enum MessagePriority { HIGH = "HIGH", NORMAL = "NORMAL", LOW = "LOW" } //# sourceMappingURL=priority.d.ts.map