From c798d96009e9dc411c1ca33e07da4d7246630a14 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sat, 22 Nov 2025 20:30:37 +0000 Subject: [PATCH] Fix import --- frontend/local-client-cli/src/node-filesystem.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/local-client-cli/src/node-filesystem.ts b/frontend/local-client-cli/src/node-filesystem.ts index 90d6c8f0..f40143c8 100644 --- a/frontend/local-client-cli/src/node-filesystem.ts +++ b/frontend/local-client-cli/src/node-filesystem.ts @@ -1,7 +1,11 @@ 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 { + FileSystemOperations, + RelativePath, + TextWithCursors +} from "sync-client"; export class NodeFileSystemOperations implements FileSystemOperations { public constructor(private readonly basePath: string) {}