Fix TS compile

This commit is contained in:
Andras Schmelczer 2025-06-01 20:29:48 +01:00
parent 5ce6143838
commit e37399dc29
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
4 changed files with 14 additions and 5 deletions

View file

@ -9,7 +9,7 @@ import type { Logger } from "../tracing/logger";
import PQueue from "p-queue";
import { hash } from "../utils/hash";
import { v4 as uuidv4 } from "uuid";
import type { components } from "../services/types";
import type { components } from "../services/types/http-api";
import type { Settings, SyncSettings } from "../persistence/settings";
import type { FileOperations } from "../file-operations/file-operations";
import { findMatchingFile } from "../utils/find-matching-file";

View file

@ -17,7 +17,7 @@ import type {
} from "../tracing/sync-history";
import { SyncStatus, SyncType } from "../tracing/sync-history";
import { EMPTY_HASH, hash } from "../utils/hash";
import type { components } from "../services/types";
import type { components } from "../services/types/http-api";
import { deserialize } from "../utils/deserialize";
import type { Settings } from "../persistence/settings";
import type { FileOperations } from "../file-operations/file-operations";