Update type imports

This commit is contained in:
Andras Schmelczer 2025-11-22 12:00:00 +00:00
parent ea189f3d09
commit 38810579ec
2 changed files with 4 additions and 3 deletions

View file

@ -1,12 +1,13 @@
import type { Stat, Vault, Workspace } from "obsidian";
import { MarkdownView, normalizePath } from "obsidian";
import {
CursorPosition,
TextWithCursors,
utils,
type FileSystemOperations,
type RelativePath
} from "sync-client";
import { getSelectionsFromEditor } from "./views/cursors/get-selections-from-editor";
import type { TextWithCursors, CursorPosition } from "reconcile-text";
export class ObsidianFileSystemOperations implements FileSystemOperations {
public constructor(

View file

@ -4,9 +4,9 @@ import {
type RelativePath,
type FileSystemOperations,
type SyncSettings,
SyncClient
SyncClient,
TextWithCursors
} from "sync-client";
import type { TextWithCursors } from "reconcile-text";
export class MockClient implements FileSystemOperations {
protected readonly localFiles = new Map<string, Uint8Array>();