Various improvements #169

Merged
schmelczer merged 78 commits from asch/saturday into main 2025-11-30 15:24:52 +00:00
Showing only changes of commit 3b2711fcf3 - Show all commits

Fix import

Andras Schmelczer 2025-11-22 20:30:37 +00:00

View file

@ -1,7 +1,11 @@
import * as fs from "fs/promises"; import * as fs from "fs/promises";
import type { Dirent } from "fs"; import type { Dirent } from "fs";
import * as path from "path"; 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 { export class NodeFileSystemOperations implements FileSystemOperations {
public constructor(private readonly basePath: string) {} public constructor(private readonly basePath: string) {}