Minor fixes
parent
efdb4c726f
commit
33797c5898
|
@ -116,7 +116,7 @@ export default defineComponent({
|
|||
|
||||
props: {
|
||||
photos: {
|
||||
type: Array,
|
||||
type: Array<IPhoto>,
|
||||
required: true,
|
||||
},
|
||||
},
|
||||
|
|
|
@ -31,7 +31,7 @@ export default defineComponent({
|
|||
|
||||
props: {
|
||||
photos: {
|
||||
type: Array,
|
||||
type: Array<IPhoto>,
|
||||
required: true,
|
||||
},
|
||||
},
|
||||
|
|
|
@ -77,6 +77,7 @@ export type IPhoto = {
|
|||
w: number;
|
||||
datetaken: number;
|
||||
address?: string;
|
||||
tags: { [id: string]: string };
|
||||
exif?: {
|
||||
Rotation?: number;
|
||||
Orientation?: number;
|
||||
|
|
Loading…
Reference in New Issue