/** * Core module exports for LockBackend implementations. * Import from `syncguard/common` to build custom backends. * * @see docs/specs/interface.md - LockBackend API contracts */ export { createAutoLock, lock } from "./auto-lock.js"; export * from "./config.js"; export * from "./constants.js"; export * from "./crypto.js"; export * from "./disposable.js"; export * from "./errors.js"; export * from "./helpers.js"; export * from "./telemetry.js"; export * from "./types.js"; export * from "./validation.js";