Start on C2PA and Exif info boxes on upload

This commit is contained in:
N-Pex 2025-07-04 12:51:57 +02:00
parent 114c09eb50
commit 54a1c05ddf
14 changed files with 337 additions and 49 deletions

View file

@ -1,4 +1,5 @@
import { ComputedRef, Ref } from "vue";
import { Proof } from "./proof";
export class UploadPromise<Type> {
wrappedPromise: Promise<Type>;
@ -48,7 +49,7 @@ export type Attachment = {
scaledDimensions?: { width: number; height: number };
useScaled: boolean;
src?: string;
proof?: any;
proof?: Proof;
sendInfo?: AttachmentSendInfo;
};