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: {
photos: {
type: Array,
type: Array<IPhoto>,
required: true,
},
},

View File

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

View File

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