Fix import

This commit is contained in:
Andras Schmelczer 2025-11-22 20:30:37 +00:00
parent 51baa4d8e0
commit c798d96009

View file

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