From fccc66aaead73877ac311ee726878930a27cf62e Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sat, 22 Nov 2025 11:46:30 +0000 Subject: [PATCH] Re-export type --- frontend/local-client-cli/src/node-filesystem.ts | 1 - frontend/sync-client/src/index.ts | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/local-client-cli/src/node-filesystem.ts b/frontend/local-client-cli/src/node-filesystem.ts index 252385c9..90d6c8f0 100644 --- a/frontend/local-client-cli/src/node-filesystem.ts +++ b/frontend/local-client-cli/src/node-filesystem.ts @@ -2,7 +2,6 @@ import * as fs from "fs/promises"; import type { Dirent } from "fs"; import * as path from "path"; import type { FileSystemOperations, RelativePath } from "sync-client"; -import type { TextWithCursors } from "reconcile-text"; export class NodeFileSystemOperations implements FileSystemOperations { public constructor(private readonly basePath: string) {} diff --git a/frontend/sync-client/src/index.ts b/frontend/sync-client/src/index.ts index 7a2014b8..81b7f7ff 100644 --- a/frontend/sync-client/src/index.ts +++ b/frontend/sync-client/src/index.ts @@ -28,6 +28,7 @@ export type { NetworkConnectionStatus } from "./types/network-connection-status" export type { MaybeOutdatedClientCursors } from "./types/maybe-outdated-client-cursors"; export { DocumentSyncStatus } from "./types/document-sync-status"; export { SyncClient } from "./sync-client"; +export type { TextWithCursors, CursorPosition } from "reconcile-text"; export const debugging = { slowFetchFactory,