From 6379cdd70ba1d38e09dc453a088cd0a367c03a8d Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Fri, 4 Apr 2025 09:09:07 +0530 Subject: [PATCH] Unused --- web/packages/gallery/services/download.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/web/packages/gallery/services/download.ts b/web/packages/gallery/services/download.ts index f8aee67867..de9f67d2af 100644 --- a/web/packages/gallery/services/download.ts +++ b/web/packages/gallery/services/download.ts @@ -29,11 +29,6 @@ export interface LivePhotoSourceURL { video: () => Promise; } -export interface LoadedLivePhotoSourceURL { - image: string; - video: string; -} - /** * URL for the original image or video, but with potential conversions applied * to make it more likely that the browser (or desktop app) will be able to @@ -51,7 +46,7 @@ export interface LoadedLivePhotoSourceURL { * browser (or desktop app) can show. */ export interface RenderableSourceURLs { - url: string | LivePhotoSourceURL | LoadedLivePhotoSourceURL; + url: string | LivePhotoSourceURL; originalImageBlob?: Blob | undefined; type: "normal" | "livePhoto"; /**