UNPKG

syncguard

Version:

Functional TypeScript library for distributed locking across microservices. Prevents race conditions with Redis, PostgreSQL, Firestore, and custom backends. Features automatic lock management, timeout handling, and extensible architecture.

9 lines (8 loc) 306 B
/** * Common module re-exports for SyncGuard backends. * Most users should import from `syncguard/common` via backend.ts. * This index provides direct access to specific modules when needed. */ export * from "./backend-semantics.js"; export * from "./backend.js"; export * from "./time-predicates.js";