/** * NEW: The document is newly created and not yet synced with the latest revision. * SYNCED: The document is synced with the latest revision. * DRAFT: The document advances as a draft compared to the latest revision * OUTDATED: The document is outdated and needs to be synced with the latest revision. * ISOLATED: The latest revision does not exist and the document is isolated from the page. */ export declare const YDocStatus: { readonly NEW: "new"; readonly SYNCED: "synced"; readonly DRAFT: "draft"; readonly OUTDATED: "outdated"; readonly ISOLATED: "isolated"; }; export type YDocStatus = (typeof YDocStatus)[keyof typeof YDocStatus]; /** * The base path for Yjs WebSocket connections. */ export declare const YJS_WEBSOCKET_BASE_PATH = "/yjs";