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) {}