Expose locks utils

This commit is contained in:
Andras Schmelczer 2025-08-10 12:59:33 +01:00
parent b56e8f6c15
commit d9ffcfeb5c
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 42 additions and 5 deletions

View file

@ -20,3 +20,8 @@ export type { ClientCursors } from "./services/types/ClientCursors";
export type { NetworkConnectionStatus } from "./types/network-connection-status";
export { DocumentUpdateStatus } from "./types/document-update-status";
export { SyncClient } from "./sync-client";
import { Locks } from "./utils/locks";
export const helpers = {
Locks
};