Fix checks

This commit is contained in:
Andras Schmelczer 2025-07-13 10:32:18 +01:00
commit 7bdb6d15d9
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 4 additions and 9 deletions

View file

@ -1,4 +1,4 @@
import type { StoredDatabase, TextWithCursors } from "sync-client";
import type { StoredDatabase } from "sync-client";
import { assert } from "../utils/assert";
import {
type RelativePath,
@ -6,7 +6,7 @@ import {
type SyncSettings,
SyncClient
} from "sync-client";
import type { TextWithCursors } from "reconcile-text";
export class MockClient implements FileSystemOperations {
protected readonly localFiles = new Map<string, Uint8Array>();
protected client!: SyncClient;