export interface PicUploadInput { pics: { id: string; size: number; hash?: string; index: number; width: number; height: number; }[]; } export interface PicUploadURLOutput { repetitions: string[]; urls: { id: string; url: string; hash: string; width: number; height: number; }[]; } export interface PicUploadSuccessOutput { hasRepetitions: boolean; pics: { src: string; index: number; }[]; }