Minor fixes

pull/461/head
Varun Patil 2023-03-07 19:35:47 -08:00
parent efdb4c726f
commit 33797c5898
3 changed files with 3 additions and 2 deletions

View File

@ -116,7 +116,7 @@ export default defineComponent({
props: { props: {
photos: { photos: {
type: Array, type: Array<IPhoto>,
required: true, required: true,
}, },
}, },

View File

@ -31,7 +31,7 @@ export default defineComponent({
props: { props: {
photos: { photos: {
type: Array, type: Array<IPhoto>,
required: true, required: true,
}, },
}, },

View File

@ -77,6 +77,7 @@ export type IPhoto = {
w: number; w: number;
datetaken: number; datetaken: number;
address?: string; address?: string;
tags: { [id: string]: string };
exif?: { exif?: {
Rotation?: number; Rotation?: number;
Orientation?: number; Orientation?: number;