Fix: note themes uses full URL now instead of Panoramax-id

This commit is contained in:
Pieter Vander Vennet 2024-09-28 02:44:03 +02:00
parent 4395e88390
commit ce363dfb59
4 changed files with 41 additions and 32 deletions

View file

@ -8,5 +8,7 @@ export interface ImageUploader {
blob: File,
currentGps: [number,number],
author: string
): Promise<{ key: string; value: string, absoluteUrl: string }>
): Promise<UploadResult>
}
export interface UploadResult{ key: string; value: string, absoluteUrl: string }