Remove clutter

This commit is contained in:
Andras Schmelczer 2026-04-26 18:19:01 +01:00
parent 81c7e0c984
commit 439de6a264
9 changed files with 12 additions and 16 deletions

View file

@ -1,2 +0,0 @@
// This file is intentionally empty
// All document tracking has been moved to sync-event-queue.ts

View file

@ -1,7 +0,0 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export interface UpdateDocumentVersion {
parent_version_id: bigint;
relative_path: string;
content: number[];
}

View file

@ -16,7 +16,7 @@ export interface DocumentWithPath {
record: DocumentRecord;
}
export interface StoredDocument extends DocumentRecord {
interface StoredDocument extends DocumentRecord {
relativePath: RelativePath;
}

View file

@ -28,7 +28,7 @@ export interface SyncDeleteDetails {
relativePath: RelativePath;
}
export interface SyncSkippedDetails {
interface SyncSkippedDetails {
type: SyncType.SKIPPED;
relativePath: RelativePath;
}